The following small series for you to share a PHP service-side Environment building graphics and text tutorial, with a good reference value, I hope to be helpful to everyone. Let's take a look at it with a little knitting.
First, PHP server environment Building
1.php Service-side environment Mounting Kit xampp (apach+mysql+php interpreter )
F:\MyDoc files (important) \dl_ learning \download Important Resources \apache Server components
Installation
The Xmapp panel appears to run successfully
Test whether the local Apache server is on: Enter 127.0.0.1 in the browser to enter Xmapp official website
4. Modify the dashboard folder that appears by default in the browser
Open Xmapp under Htdocs folder index.php file configuration file in the default jump to this folder
Workaround: Delete all files under Htdocs, will not automatically jump
at this point, the server-side environment configuration is complete, but you want to be able to save the project file to the re-created www How is the folder set up?
5. Save all files to the F:\www folder
Workaround:
(1) Enter F:\xampp\apache\conf\httpd.conf
(2) Open file
(3) Modify #DocumentRoot "C:/xampp/htdocs" as
DocumentRoot "C:/www" <directory "c:/www" >
(4) Save shutdown, restart XAMPP Control Panel
Test: Create a new www.text file under the WWW folder,
Input 127.0.0.1 display in browser
Success!!!!
Above this PHP server environment set up the text tutorial (share) is small part of the whole content to share to everyone, I hope to give you a reference, but also hope that we support PHP Chinese network.
Articles you may be interested in:
PHP implementation of Hill sorting algorithm method explained
PHP uses a custom key to explain how to encrypt and decrypt data
PHP implementation of simple arithmetic calculator function Example explained