Home > Article > Backend Development > PHP environment construction-WAMP+Zend
/*I am ignorant, so I found a lot of tutorials on the Internet, and after a lot of torture, I finally got hope on Tieba! I'm sharing it here, I hope you won't criticize it. */
/*This is on a Windows machine. I don’t know the difference between win32 and win64. When setting up, although it says win32, I am win64, so I can still install it! */
1.
II ,
You can build it anywhere you want.
We will install apache php mysql in the amp folder, and we will use the root directory of the www folder to put the project. L & & & lt; title & gt; First install Apache & LT;/Title & GT; The installation directory and then the next step to install
My business is in E:ampapache
Modify the virtual directory to e:www directory line 206 and also modify it
Set the default document and add index.php
Enable httpd- in the extra directory The vhosts.conf file is mainly used to configure virtual hosts. Just remove the # comment in front of line 469.
After
is removed
open httpd-vhosts.conf in the extra directory and start configuring the host. Copy lines 27-43. And comment out the original
Unzip the php file package and put it in the www directory of the e drive and name it php. Enter the php folder and find any of the following 2 files. Back up and rename it to php.ini
Enter php.ini
Set the time zone to PRC and remove the previous comment symbol
In setting up the php extension directory
Open some common extensions such as gd library mysql, etc. and then save
We will enter the httpd.conf configuration file of apache and write the following four sentences
1 Introduce the address of phpini
2Introduce the apache module
3Introduce ssleay32.dll No need to copy to the win directory of the c drive
4Introduce libeay32.dl l No need to copy to the win directory of the c drive
Set up php file parsing
Before setting
After setting
Save and restart apache. If there is an error, please carefully check the 2 modifications you just made. Refresh the localshot and the following interface will appear. The configuration is successful. The index.php just called the phpinfo function apache+php is completed. The following is the installation. mysql
echo "Possible problems!!";
The 80 port is occupied, maybe because Thunder or other software occupies the port, my approach is in the Apache configuration file Change the port setting to 81,
This is more convenient, so I haven’t tried the method of removing the port occupied by other software.
But later, my 81 could no longer be used. I searched on Baidu and changed it to 5001, and it can be used again. I hope someone can tell me.
5.
Open the mysql file and agree to the terms
Select custom configuration
Select the mysql installation directory
Select the mysql data directory and then next step
Choose Custom Configuration
I usually choose the middle one. The specific difference is whether Baidu
supports thing selection is
Setting the path of thing data The thing data table needs to be stored separately
Number of people connected at the same time
Default
settings Coding
set mysql password
Installation
VI.
Hurry up and start writing your php code!
The above introduces the PHP environment construction-WAMP+Zend, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.