Home >Backend Development >PHP Tutorial >The requested operation has failed

The requested operation has failed

WBOY
WBOYOriginal
2016-06-23 14:09:441295browse

配置Apache和php
如果在Apache的配置文件httpd.conf中加入
LoadModule php5_module "C:/php/php5apache2_2.dll"
AddType application/x-httpd-php .php 
PHPIniDir "C:/php"
之后启动Apache会出现The requested operation has failed,如果去掉这三行就能正常启动,为什么?
求高手解答!!!


回复讨论(解决方案)

问题出在 C:/php/php5apache2_2.dll
打开apache目录下logs/error.log 文件,里面会有详细的说明,贴出来,或直接google

如果是用于 Apache 1 或 Apache 2 则选择 PHP 5.3 VC6 或者 PHP 5.2 VC6。

【详细错误】:Apache is running a threaded MPM, but your php module is not compiled to be threadsafe. you need to recompile php. pre-configuration failed.
【造成原因】:服务管理器由IIS更换至Apache,原php版本是无线程安全(nts)的,因此需要将php同时更换为线程安全版本(ts).

请选择PHP版本为 vc6-ts (VC6,线程安全) 
参见下载列表: http://windows.php.net/downloads/releases/archives/
这是官方apache windows的最后一个版本 5.3.5:  http://windows.php.net/downloads/releases/archives/php-5.3.5-Win32-VC6-x86.zip
下载后解压到C:/php 无需进行安装就能用。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn