For example:
Copy Code code as follows:
1 LoadModule php5_module "D:/wamp/bin/php/php5.4.3/php5apache2_2.dll"
2 Phpinidir "D:\wamp\bin\php\php5.4.3"
This way Apache uses the php.ini and PHP DLLs that are loaded with version 5.4.3. Let IIS use the php.ini in the environment variable.
In addition, when the Wamp boot, often prompts similar
"Unable to locate program input point php_checkuid to dynamic link library Php5ts.dll"
"Php_pdo.dll was not found, so the application failed to start. The need to reinstall the application may fix the problem. "
Error on the.
Workaround:
1. Create the new two files in the "d:/wamp/bin/php/php5.4.3" directory:
Php-win.bat content is:
Copy Code code as follows:
Php-win.exe-c "D:/WAMP/BIN/PHP/PHP5.4.3/" Php.bat
Content is:
Copy Code code as follows:
Php.exe-c "D:/WAMP/BIN/PHP/PHP5.4.3/"
Where-c specifies that the program startup is the meaning of loading the php.ini path.
2. Replace the Php-win.exe and Php.exe in Wampmanager.ini with Php-win.bat and Php.bat.
Restarting the Wampmanager.exe will not show the error of not finding the mount point.
Success is a matter of action and fact, not of the fast of the tongue.