ftp代码查询
‘壹’ 用ftp改网站关键词,在哪里找源代码文件
一般关键字都设置在网站的首页或是网站的头部文件里面,那么一般都在
index.asp,或者head.asp,header.asp里面,如果你的asp是有模板的,一般模板文件夹都以teample这个来命名,那么找静态模板文件index.html,head.html,或者header.html类似的。
‘贰’ 网站的源代码里怎么找到在ftp里显示的代码文件夹名
摘要 如果你知道代码是多少可以按crtl+f进行搜索,然后就能知道代码在那个文件夹和具体位置
‘叁’ 如何进行FTP文件的搜索
FTP文件服务器由一些组织结构为内部方柏霓而搭建的,如医院,学校、政府等,相当于集团的云端一样,实时的进行数据共享,发图片文件服务器会消耗很大的宽带资源,占用较大的网速,而且不盈利,在非公益组织的ftp是不允许他人登陆的,所以一般市面上并不常见。
通过远程连接ftp即可连接登陆,然后就能够下载所需文件了,但是要知道局域网的ip,登陆可能还需要账号及密码,使用服务器管理工具即可登陆连接,既方便,又快捷。
‘肆’ 你好 请教下 怎样在ftp里寻找网页源代码并修改源代码
找到网页模板就行啦。每种页面对应一个模板。到后台查找模板,然后到ftp找出来。
‘伍’ ftp错误代码530,这是什么意思要怎么解决
您好!FTP报错530一般会出现三种情况。
1、530 Login incorrect:这种情况,一般都是您的账号的信息有误,比如您的ftp地址,ftp账号,ftp密码以及您的端口方面有问题导致的报错这个,那么解决的方案也是非常的简单,找到您正确的信息链接,即可正常的登录。
2、530 Sorry, the maximum number of clients (3) from your host are already connected:这种情况从报错的意思是说:对不起,最大客户数(3)从你的主机已经连接,那么出现的这个原因就是您本地的ftp工具的问题,或者是您本地的连接质量不好导致的,解决的方案更换ftp工具从新链接或者是暂停关闭ftp工具 从新登陆链接即可解决。
3、530 Not logged in, home directory does not exist:出现这样的情况一般是服务器的硬盘挂掉了,或者是该用户目录不存在导致的,具体的解决方案联系空间商即可。
一般出现最多的就是以上几种情况。
‘陆’ ftp代码的含义
ftp://anonymous:[email protected]@202.194.26.174:8821
FTP代表:ftp协议的下载
用户名:anonymous
密码:[email protected]
下载地址:202.194.26.174:8821
8821是端口号。
这样的下载,直接使用下载工具,直接将这个网址加入新任务,工具会自动分析识别用户名和密码,然后下载。一般我使用Flashget。
祝你好运。
‘柒’ FTP工具是不是可以用来查看网站后台代码,并且可以用来修改后台代码
FTP客户端可以用来连接你的ftp服务器,然后上传或下载你的ftp服务器上的文件!
把网站程序下载下来的话当然也能修改这些文件的代码
‘捌’ 求vb中真正菜鸟能用的ftp代码
??1、利用Inet控件上传文件
??
??
格式:inet1.execute
,
"put
本地文件
远程文件"
??
??范例:
??
??'初始化Inet控件
??Inet1.Protocol
=
icFTP
??Inet1.URL
=
"ftp://u0501901.k1.13939.org"
??Inet1.RemotePort
=
21
??Inet1.UserName
=
"u0501901"
??Inet1.Password
=
"750531179574"
??
??Label3.Caption
=
"正在上传....."
??
??'先关闭当前的数据库存连接
??cn.Close
??
??Inet1.Execute
,
"put"
&
"
"
&
App.Path
&
"\vbhelp.mdb"
&
"
"
&
"/vbhelp/vbhelp.mdb"
??
??Do
While
Inet1.StillExecuting
??
DoEvents
??Loop
??Label3.Caption
=
"上传成功"
??
??'重新连接数据库
??dbconnect
??
??
2、利用Inet控件下载文件
??
??格式:
inet1.execute
,
"get
远程文件
本地文件",注意空格
??
??
'初始化INET1控件
??Inet1.Protocol
=
icFTP
??Inet1.URL
=
"ftp://u0501901.k1.13939.org"
??Inet1.RemotePort
=
21
??Inet1.UserName
=
"u0501901"
??Inet1.Password
=
"750531179574"
??
??Label3.Caption
=
"正在下载...."
??
??'格式:
inet1.execute
,
"get
远程文件
本地文件",注意空格
??Inet1.Cancel
??Inet1.Execute
,
"GET
/vbhelp/vbhelp.mdb
c:\temp\vbhelp.mdb"
??Do
While
Inet1.StillExecuting
??
DoEvents
??Loop
??
??label3.caption="下载成功"
??
??
3、利用INET控件建立远程的文件夹
??
??Inet1.AccessType
=
icUseDefault
??Inet1.RemotePort
=
21
??Inet1.Protocol
=
icFTP
??Inet1.URL
=
"u0711084.k1.13939.org"
??Inet1.UserName
=
"u0711084"
??Inet1.Password
=
"750531179574"
??
??Inet1.Execute
,
"mkdir
vbtest"
??Do
While
Inet1.StillExecuting
??
DoEvents
??Loop
??
??Inet1.Execute
,
"close"
??Inet1.Execute
,
"quit"
??MsgBox
"成功建立文件夹"
??
??
4、利用INET控件删除远程文件夹
??
??
方法跟建立文件夹一样,删除命令为rmdir,但只能删除空目录,删除文件用delete
‘玖’ FTP 信息代码全解
120 Service ready in nnn minutes.
服务在NNN时间内可用
125 Data connection already open; transfer starting.
数据连接已经打开,开始传送数据.
150 File status okay; about to open data connection.
文件状态正确,正在打开数据连接.
200 Command okay.
命令执行正常结束.
202 Command not implemented, superfluous at this site.
命令未被执行,此站点不支持此命令.
211 System status, or system help reply.
系统状态或系统帮助信息回应.
212 Directory status.
目录状态信息.
213 File status.
文件状态信息.
214 Help message.On how to use the server or the meaning of a particular non-standard command. This reply is useful only to the human user. 帮助信息。关于如何使用本服务器或特殊的非标准命令。此回复只对人有用。
215 NAME system type. Where NAME is an official system name from the list in the Assigned Numbers document.
NAME系统类型。
220 Service ready for new user.
新连接的用户的服务已就绪
221 Service closing control connection.
控制连接关闭
225 Data connection open; no transfer in progress.
数据连接已打开,没有进行中的数据传送
226 Closing data connection. Requested file action successful (for example, file transfer or file abort).
正在关闭数据连接。请求文件动作成功结束(例如,文件传送或终止)
227 Entering Passive Mode (h1,h2,h3,h4,p1,p2).
进入被动模式
230 User logged in, proceed. Logged out if appropriate.
用户已登入。 如果不需要可以登出。
250 Requested file action okay, completed.
被请求文件操作成功完成
257 "PATHNAME" created.
路径已建立
331 User name okay, need password.
用户名存在,需要输入密码
332 Need account for login.
需要登陆的账户 西门吐血
350 Requested file action pending further information
对被请求文件的操作需要进一步更多的信息
421 Service not available, closing control connection.This may be a reply to any command if the service knows it must shut down.
服务不可用,控制连接关闭。这可能是对任何命令的回应,如果服务认为它必须关闭
425 Can`t open data connection.
打开数据连接失败
426 Connection closed; transfer aborted.
连接关闭,传送中止。
450 Requested file action not taken.
对被请求文件的操作未被执行
451 Requested action aborted. Local error in processing.
请求的操作中止。处理中发生本地错误。
452 Requested action not taken. Insufficient storage space in system.File unavailable (e.g., file busy).
请求的操作没有被执行。 系统存储空间不足。 文件不可用
500 Syntax error, command unrecognized. This may include errors such as command line too long.
语法错误,不可识别的命令。 这可能是命令行过长。
501 Syntax error in parameters or arguments.
参数错误导致的语法错误
502 Command not implemented.
命令未被执行
503 Bad sequence of commands.
命令的次序错误。
504 Command not implemented for that parameter.
由于参数错误,命令未被执行
530 Not logged in.
没有登录
532 Need account for storing files.
存储文件需要账户信息 西门吐血
550 Requested action not taken. File unavailable (e.g., file not found, no access).
请求操作未被执行,文件不可用。
551 Requested action aborted. Page type unknown.
请求操作中止,页面类型未知
552 Requested file action aborted. Exceeded storage allocation (for current directory or dataset).
对请求文件的操作中止。 超出存储分配
553 Requested action not taken. File name not allowed
请求操作未被执行。 文件名不允许
这种错误跟http协议类似,大致是:
2开头--成功
3开头--权限问题
4开头--文件问题
5开头--服务器问题
对大家最有用的:
421:一般出现在连接数多,需稍后在接;
530:密码错误;
550:目录或文件已经被删除。
‘拾’ 查看网站源代码 如何快速在FTP里面找到相应路径
你这段源码 在哪个路径文件查看的,比如index.php
就到路径中,查找这个位置
看位置代码是什么
根据代码修改对应位置即可