Tag Archives: 错误

IIS Server Application Error 8004EOOF 错误的解决

终于有点时间了,想在本机上装个zblog1.8正式版测试一下,顺便做个主题
结果开始的时候连不上数据库,总是报错,运行权限向导也不行
重装了一下IIS,结果报了个错误

Server Application Error
The server has encountered an error while loading an application during the processing of your request. Please refer to the event log for more detail information. Please contact the server administrator for assistance.

老郁闷了。。。

解决方法:
1。右键我的电脑–管理–本地用户和组,给IUSR_机器名和IWAM_机器名两个用户设置密码,要一样,如“12345”。

2。开始–运行–输入cmd,
然后cd c:\Inetpub\AdminScripts
然后cscript.exe adsutil.vbs set w3svc/wamuserpass 12345(你的密码)
然后cscript.exe adsutil.vbs set w3svc/anonymoususerpass 2345(你的密码)

还是不行
cscript.exe synciwam.vbs -v,
又出了个错误

8004EOOF

问题:msdtc服务没有正常启动
解决方法:
1。删除注册表中的键:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSDTC

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSDTC

HKEY_CLASSES_ROOT\CID

2。停止 MSDTC服务:net stop msdtc

3。卸载MSDTC服务:msdtc -uninstall

4。重新安装MSDTC服务: msdtc -install

然后重新开始:
开始–运行–输入cmd
cd c:\Inetpub\AdminScripts
cscript.exe synciwam.vbs -v
iisreset

问题解决,但是安装zblog时还是连不上数据库。忽然想起之前问过和尚这个问题
在 Windosws\temp 文件夹上右键 -共享与安全 – 安全 – 增加一个 everyone,赋予全部权限
具体参见NTFS IIS 数据库连接错误

重装zblog,okay。。。

Illegal System DLL Relocation

昨天安装ServerU以架设Ftp时,安装过程中出现系统错误

The system DLL user32.dll was relocated in memory. The application will not run properly. The relocation occurred because the DLL C:\Windows\System32\Hhctrl.ocx occupied an address range reserved for Windows system DLLs. The vendor supplying the DLL should be contacted for a new DLL.



原因:
This problem may occur after you install security update 925902 (MS07-017) and security update 928843 (MS07-008). The Hhctrl.ocx file that is included in security update 928843 and the User32.dll file that is included in security update 925902 have conflicting base addresses. This problem occurs if the program loads the Hhctrl.ocx file before it loads the User32.dll file.

是由于安装了微软的安全更新925902 (MS07-017)和928843 (MS07-008),以下略。。。

解决:
下载这个更新程序安装:935448

IIS 0x8ffe2740 错误

重装IIS后,发现默认网站是停用的
点击开始时,报错 0x8ffe2740
经查询,是因为有别的程序占用了 80端口
解决方法:
1.默认网站改用其他端口
2.停掉占用80端口的程序
前者没什么说的了,选8080或者什么的端口就可以了
对于后者:
开始->运行
netstat -abn



可以看到占用80端口的程序的PID(2588),以及程序名称(PPLive.exe)
知道程序名就好办了,直接打开任务管理器,把相应程序关掉就可以了
加入只知道程序的PID,可以打开任务管理器,选择 “查看/选择列”
把PID选中,然后对应PID查找相应程序就可以了