ChinaUnix.net
相关文章推荐:

返回顶部代码

当用户试图通过HTTP 或文件传输协议 (FTP)访问一台正在主机上的内容时,IIS返回一个表示该请求的状态的数字代码。该状态代码记录在IIS 日志中,同时也可能在 Web 浏览器或 FTP客户端显示(也就是我们打开页面发生错误时IE显示的错误信息代码。状态代码可以指明具体请求是否已成功,还可以揭示请求失败的确切原因。 在默认状态下,IIS把它的日志文件放在 %WINNT\System32\Logfiles 文件夹中。每个WWW站点和FTP站点在该目录下都...

by octans - 网络技术文档中心 - 2008-02-28 17:27:37 阅读(687) 回复(0)

相关讨论

安装8_Recommended时常出现类似情况: Installing 109667-04... Installation of 109667-04 failed. Return code 2. Installing 111883-14... Installation of 111883-14 failed. Return code 8. 报错的包有的是已经装过的,有的没装过。那些返回代码都是什么意思?

by 拉拉 - Solaris - 2003-05-09 22:07:31 阅读(995) 回复(4)

Solaris Patch Return Codes When adding patched to a solaris box you sometime get these error messages esp. 2 and 8 and sometimes 5 and 25. Here's what the all mean. Exit code Meaning 0 No error 1 Usage error 2 Attempt to apply a patch that's already been applied 3 Effective UID is not root 4 Attempt to save original files failed 5 pkgadd failed 6 Patch is obsoleted 7 Invalid packag...

by solstice - Solaris文档中心 - 2006-09-04 12:31:50 阅读(819) 回复(0)

build by dlltest 2.0 〖0〗-操作成功完成。 〖1〗-功能错误。 〖2〗-系统找不到指定的文件。 〖3〗-系统找不到指定的路径。 〖4〗-系统无法打开文件。 〖5〗-拒绝访问。 〖6〗-句柄无效。 〖7〗-存储控制块被损坏。 〖8〗-存储空间不足,无法处理此命令。 〖9〗-存储控制块地址无效。 〖10〗-环境错误。 〖11〗-试图加载格式错误的程序。 〖12〗-访问码无效。 〖13〗-数据无效。 〖14〗-存储器不足,无法完成此操作...

by zhousqy - 网络技术文档中心 - 2005-12-02 13:51:33 阅读(1364) 回复(0)

怎么样将管道|前面的输出内容 追加到一个文件的顶部 谢谢! 例如:管道前的输出内容追加到file2的顶部 grep farmer file1| cat file1 I am a farmer! I am a student! I am a worker! cat file2 I am a student! I am a worker! 通过管道 追加到顶部 变成 I am a farmer! I am a student! I am a worker! 谢谢!

by 麒麟才者 - Shell - 2008-05-15 16:12:57 阅读(4152) 回复(14)

续上篇 〖4395〗-W 〖4396〗-Th 〖4397〗-F 〖4398〗-S 〖4399〗-Sa 〖4401〗-组名 〖4402〗-注释 〖4403〗-成员 〖4406〗-别名 〖4407〗-注释 〖4408〗-成员 〖4411〗-用户名 〖4412〗-全名 〖4413〗-注释 〖4414〗-用户的注释 〖4415〗-参数 〖4416〗-国家(地区)代码 〖4417〗-权限等级 〖4418〗-操作员权限 〖4419〗-帐户启用 〖4420〗-帐户到期 〖4421〗-上次设置密码 〖4422〗-密码到期 〖4423〗-密码...

by zhousqy - 网络技术文档中心 - 2005-12-02 13:54:38 阅读(1494) 回复(0)

返回内容为: 22:13:28 shmat: [22]: 操作系统错误 不能与共享内存连接 参数不正确

by lrlfriend - Informix - 2004-04-02 14:24:07 阅读(1366) 回复(6)

打补丁返回代码5怎解???? 显示我的pkg有问题 5 pkgadd failed pkgadd: ERROR: PKG parameter ; does not match instance ; Dryrun complete. No changes were made to the system. for: No such file or directory details: No such file or directory 但如何解决呀 我在采用pkgadd 安装软件包的时候并没有问题!!! 是pkgadd的版本有问题?????

by Irc_worm - Solaris - 2003-06-26 20:05:52 阅读(865) 回复(6)

呵呵,一个与补丁返回代码有关的东东, 在网上不小心找到的, 希望对大家有用啊! Solaris Patch Return Codes When adding patched to a solaris box you sometime get these error messages esp. 2 and 8 and sometimes 5 and 25. Here's what the all mean. Exit code Meaning 0 No error 1 Usage error 2 Attempt to apply a patch that's already been applied 3 Effective UID is not root 4 Attempt to save o...

by solstice - Solaris - 2003-02-26 11:10:08 阅读(1731) 回复(4)

#!/usr/bin/perl use warnings; sub total{      my $x;      foreach $x(@_){                $_ += $_;              }           } @fred = qw /1 3 5 7 9/; $fredTo...

by godsad - Perl - 2009-07-21 16:23:56 阅读(1322) 回复(4)

我想测试一下 函数返回一个结构体时 是如何返回的,一般返回值直接用%eax寄存器返回。但当是结构体时,在被调函数fun的最后,指令为:ret $4 怎么返回的是立即数呢? 另外在fun函数体内,movl 8(%ebp), %ecx 是将ebp+8的内容放入ecx寄存器,但ebp+8指向的是调用者的栈帧的某一内容,为什么要访问调用者的该存储内容?请指教。

by disheng727 - C/C++ - 2008-11-10 23:45:25 阅读(3557) 回复(7)