Home > php教程 > php手册 > body text

Apache中php.ini的设置方法

WBOY
Release: 2016-06-13 11:55:07
Original
1346 people have browsed it

例如:

复制代码 代码如下:


1 LoadModule php5_module "D:/wamp/bin/php/php5.4.3/php5apache2_2.dll"
2 PHPIniDir "D:\wamp\bin\php\php5.4.3"


这样Apache使用的php.ini和PHP的DLL都是加载的5.4.3版本的。让IIS使用环境变量中的php.ini。

另外在wamp启动的时候,经常会提示类似

"无法定位程序输入点 php_checkuid 于动态链接库 php5ts.dll"

"没有找到 php_pdo.dll ,因此这个应用程序未能启动。需要重新安装应用程序可能会修复此问题。"

上的错误。

解决方法:

1.  在 "D:/wamp/bin/php/php5.4.3"目录下新建这两个文件:

php-win.bat  内容为:

复制代码 代码如下:


php-win.exe -c "D:/wamp/bin/php/php5.4.3/"php.bat


内容为:

复制代码 代码如下:


php.exe -c "D:/wamp/bin/php/php5.4.3/"


其中 -c 是指定程序启动是加载php.ini路径的意思。

2.  将wampmanager.ini中的php-win.exe和php.exe 替换成php-win.bat和php.bat.

重启wampmanager.exe就不会出现找不到挂载点的错误了。

成功,只青睐行动和事实,而非口舌之快者。

source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!