Recently there is a small program that needs to run in PHP, documenting the PHP environment configuration process.
1. First in the Download integration tool Wamp,wamp is the integrated installation environment that uses Apache, MySQL, and PHP on Windows servers to quickly install the configuration Web server:
Https://sourceforge.net/projects/wampserver/files/WampServer%203/WampServer%203.0.0/wampserver3.0.6_x64_ Apache2.4.23_mysql5.7.14_php5.6.25-7.0.10.exe/download
Install directly after download.
2. After the installation is complete, run Wamp, the Wamp icon appears in the lower right corner of the desktop, the icon is initially red, then turns orange, and then turns green. Turning green indicates that all services are turned on as expected.
3. After the server is successfully opened, open the browser input http://localhost or http://127.0.0.1 to open the page under the PHP server. The MySQL database can be managed by http://localhost/phpmyadmin/.
The PHP environment configuration is now complete.
4. The root directory of the default server is the WWW directory under the Wamp installation directory, which can be changed by changing the httpd.conf file.
An issue was encountered during installation: Hint missing Vcruntime140.dll
Workaround:
1. First download the vc++2015, note whether your system is 32-bit or 64-bit, download the corresponding version. And then proceed with the installation.
64-bit vc++2015,32 is provided here, please own Baidu "32-bit vc++2015"
Link: http://pan.baidu.com/s/1pLaRTRd Password: un85
2. Download Vcruntime140.dll. Link: Http://pan.baidu.com/s/1mi1wy3A Password: r7n3
After downloading, unzip the file and copy the 32-bit vcruntime140.dll to:
C:\Windows\SysWOW64, in the put, Zhuce.bat copy to the sibling directory, double-click Run;
When you see: The Sign of success, it means that Vrcuntime140.dll has been registered successfully.
Php+mysql+apache Environment Construction