Download the class files. After downloading the class files, create a folder in. How to set up “localhost” document root as Mac's “Sites” folder with MAMP PRO 4? 13 macOS Catalina doesn't allow MAMP permission to certain folders (Documents, Downloads, Desktop).
MAMP is a free distribution package that makes it easy to install Apache Web Server, PHP, and MySQL. Before installing MAMP, you should turn off any other web servers and instances of MySQL you have running on your Windows machine.
- Download the latest version of MAMP:
- Run the downloaded file (e.g., MAMP_MAMP_PRO_4.1.exe) and click through the installation wizard.
- If prompted, you do not need to install MAMP PRO or Apple Bonjour.
- Accept the License Agreement.
- Leave the default for the installation directory (C:MAMP).
- Leave the default for the Start Menu folder (MAMP).
- Close the wizard when setup is finished.
Running MAMP on Windows
Careful!
Be very careful to follow these steps exactly. MAMP can be finicky. If something goes wrong, often the easiest thing to do is uninstall MAMP and start the process over again.
Localhost Mamp Htdocs
To run MAMP...
Localhost:mamp/wordpress
- Navigate to C:MAMP in Windows Explorer and open MAMP.exe. If you get a security alert, allow access. You should see a window like this one: The servers (Apache Server and MySQL Server) should have automatically started. If they did not, start them by clicking on Start Servers.
- Open MAMP Preferences:
- Change the Apache port to 8888:
- Click on Open WebStart Page: The following page should open in your browser:
Class Files
- After downloading the class files, create a folder in C:MAMPhtdocs named 'Webucator' and extract your class files in that folder:
- Rename the ClassFiles folder to php:
- To test that your setup so far is correct, open your browser and navigate to http://localhost:8888/Webucator/php/. You should get a listing like this:
- Click PHPBasics, then click Demos, and then hello-world.php. You should get a page that looks like this:
Setting the MySQL Password
The PHP files use 'pwdpwd' for the MySQL root password, while the default password used in MAMP is 'root'. In your browser, navigate to http://localhost:8888/phpMyAdmin/.
Note: It is important to do these steps in the order specified.
- Click the mysql database on the left.
- Click the SQL tab at the top.
- Enter the following in the textbox under Run SQL query/queries on database mysql:
- Click Go.
- You also need to update the password in C:MAMPbinphpMyAdminconfig.inc.php. Open the file in your editor (e.g., Visual Studio Code) and change the password setting as show below to 'pwdpwd'.
Installing the poetree Database
Use phpMyAdmin to install the poetree database used in class.
- Click on the Import tab heading
- Click the Choose File button.
- Browse to the poetree-db.sql file in your class files (C:MAMPWebucatorphppoetree-dbsql).
- Click Open:
- Click the Go button on the bottom left of the page.
- You should get a Success message and poetree should be added to your list of Databases.
One Final Test
Point your browser to http://localhost:8888/Webucator/php/Database/Solutions/phppoetry.com/. If you see a page like this, you're all set:
And that's it
Happy MAMPing!
Recommended Code Editor
Visual Studio Code (Download, Install, and Set up VS Code)
While you may use a different editor or IDE, Visual Studio Code is an excellent IDE to learn to code on. It provides a nice balance of power and simplicity and it is available on Windows and Mac.
By the current time, MAMP had released a version for Windows. This helps Windows users have one more option set up an Apache localhost easily. So that, you can focus on coding some PHP instead of spending so much time setting up your localhost. The biggest advantage of MAMP is you just need to install and use with least manual config.
To download MAMP click here. They provide free and pro version. The install process is straightforward.
Install and create your PHP web app with MAMP
After installing, open MAMP and click on “Start Servers” to start your localhost.
When you see the two checkboxes Apache Server and MySQL Server are green, the “Start Server” button turns green and change to “Stop Server” you know that everything is set up and you’re good to go.
Next, click on Open Start Page, the middle button to open the starting page.
This page is where you can access your website, phpinfo page and something else.
Click on “My Website” to go to your page, by default MAMP is installed in your C drive and so your web root folder must be “C:/MAMP/htdocs”.It means when you type “localhost” in your browser it will show the index file in the htdocs folder. Now, I will create a new file “add.php” and copy the code of the add application I created in this post (source code is at the end of the post) into this new file. My folder now looks like this:
To access this specific page, I type “localhost/add.php”
So now I can run my simple web application in my localhost so easily, thank to MAMP.
