Installing Apache + PHP + MySQL


Recommended Posts

This is how to setup Apache + PHP + MySQL on your Windows PC. I hope you like it:

Download and Install Apache

1. Download Apache 2.0.52 from The Apache Download Page, and run the installer, and follow what the directions say.

2. Select Custom from the Install Type and click next.

setup2.jpg

3. Make sure the second screenshot is the same as what your install looks like. Finish the install and goto http://localhost.

Note: The place to put your HTML/PHP files is: C:\Apache2\htdocs\

In your system tray you will see a picture thingy for Apache. You can use that to start, stop and restart the webserver. Apache has very, very advanced features that can only be change in the C:\Apache2\conf\httpd.conf file, after you change settings in this file, you must restart Apache.

Download and Install PHP

1. Download the PHP 4.3.10 Installer Package from PHP Downloads. (If you want to use extensions later on, download the Zip package. The Installer includes the MySQL extension).

2. Set the install type to 'Advanced' and proceed thru the installer. Follow the dialogs with the defaults unless you know what you are doing (in which case you probably wouldn't be reading this guide). Follow these dialogs to exactly how I have them setup.

php16is.jpg

Install Path

php26vg.jpg

Only show errors in PHP pages.

php33ar.jpg

Tells installer not to try to configure our Web Server.

3. Goto your C:\PHP directory and copy php4ts.dll to your C:\WINDOWS\system32 directory

4. copy php.ini-recommended to your C:\WINDOWS directory and rename it to php.ini.

5. Open up the C:\Apache2\conf\httpd.conf file in a texteditor like Notepad and find a list of words that say:

LoadModule

6. Add the lines:

LoadModule php4_module "c:/php/sapi/php4apache2.dll"
AddType application/x-httpd-php .php

to the end of the list.

7. Save the httpd.conf file and restart Apache.

8. Create a file called info.php and put the code:

<?
phpinfo();
?>

in the file, save and browse to http://localhost/info.php, if you see a page that is not blank, you have installed PHP correctly.

Download and Install MySQL 4.1

Note, MySQL does not work well with 9x/ME, and should only be used with NT/2000/XP/2003

1. Download MySQL 4.1 from MySQL

2. Run the installer

3. Make sure you select the "Complete Install" from the install type

4. Finish the install.

5. In the MySQL Server Instance Configuration, select Reconfigure Instance.

6. Select Detailed Configuration

7. You will have to read the summery of the choices. Choose "Developer Machine" only if you are going to be using MySQL like a large MS Excel Speadsheet. Choose "Server Machine" if you will be running Apache and PHP along with MySQL. Only choose "Dedicated MySQL Server Machine" if you are going to have a box dedicated to running MySQL, and nothing else, you should also have at least 2GB of RAM if you choose this option.

8. Choose "Multifunctional Database".

9. Choose the same drive letter as MySQL is on. Choose C:\MySQL\data for the path.

10. Read the discriptions for how many concurrent connections you will have and choose which is the most suited for you.

11. Make sure "Enable TCP/IP Networking" is checked and the port number must be 3306.

12. Choose the language character set to what you need.

13. Leave the "Modify Security Settings" unchecked and clicke next.

14. Click Execute and you'll have setup and optimized MySQL to your PC's specs.

Edited by b0b
Link to comment
https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/
Share on other sites

  crackhbob said:
Or you could just use one of the packages that does it all for you. :D

You could, but that doesn't allow for much control. It's also useful to be able to set it up yourself on Windows, as one day you may want to on Linux, and it will be easier if you've got experience with setting it up on a different platform.

you know if you have an old computer, or some old parts to put one together, you should look into make a little linux web server. i did that with my old old 333mhz. works perfect. plus it does all the php, apache, mysql setup for you..

not that you need it, cuiz you've prolly already got your windows one going there. but cool none-the-less

Very nice guide (Y) For those of you that want a very quick web server setup on a Windows machine, you should go here (1.7 is the newest version):

http://easyphp.org/telechargements.php3

Keep in mind that this isn't the newest version of everything. There are great setup instructions here:

http://www.canowhoopa$$.com/guid...php/install.php (Replace $'s with s's)

I'm all for setting up a webserver like b0b has shown you, but this is great for people who don't have the time, or if they are a little intimidated with the way b0b has shown us. I'm using this on my current webserver and it works flawlessly.

The packages are good if you are completely lost by my tutorial, but if something in the package goes out of date (Apache, PHP or MySQL), you usually have a problem trying to upgrade just one. Also, if you find out that you don't need something later on, you can uninstall just that component.

I find it easier to install Apache, MySQL and PHP on FreeBSD than on Windows. It's easy when you have the FreeBSD ports system. Since it's source-based, you don't lose any flexibility: you can still select the relevant compile-time options. If you use the ports, you can also upgrade the relevant ports whenever new versions come out - without having to reinstall anything manually.

To install apache-modssl, mysql, and mod_php4:

1) Install MySQL first via the ports:

cd /usr/ports/databases/mysql40-server
make install clean

This will automatically download the latest sources for the mysql40-server port, compile and install it.

2) Install apache-modssl:

cd /usr/ports/www/apache13-modssl
make
make certificate

Follow the prompts to create the certificate. To remove the pass phrase from the RSA key so that we don't need to type in the pass phrase everytime we reboot the server:

cd /usr/ports/www/apache13-modssl/work/apache_1.3.29/conf/ssl.key/
openssl rsa -in server.key -out server.pem

Go back to the port directory to continue the install:

cd /usr/ports/www/apache13-modssl
make install
make clean

3) Install PHP:

cd /usr/ports/www/mod_php4
make install clean

Choose from the compile-time options that come up: ssl support and mysql support. Select anything else that you need and carry on with the install.

4) Edit the Apache configuration file /usr/local/etc/apache/httpd.conf

Add these lines in the file:

AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps

Well why would I want to start installing things that can kill my computer like EasPHP and other packed servers that are about 170+MB? When I can download The Uniform Server that is a small mini server and great for public and testing use.

It is also under constant developing and very much less than 5MB unlike EasyPHP and others that are like 20-30MB?

  olajideolaolorun said:
Well why would I want to start installing things that can kill my computer like EasPHP and other packed servers that are about 170+MB? When I can download The Uniform Server that is a small mini server and great for public and testing use.

It is also under constant developing and very much less than 5MB unlike EasyPHP and others that are like 20-30MB?

For the same reasons as I stated in the above post.

by doing a simple test using <? phpinfo(); ?>, MySQL is NOT working, only PHP is working, what am i missing?

also, i'm a bit confused about step 9 in the tutorial

  Quote
9. Double click on mysqladmin.exe and you will need to enter a username and password for your MySQL server. You will need to know this if you want to connect to your MySQL server remotely.

is it suppose to be winmysqladmin.exe???

  SpinningCPU said:
hey can anyone help me, when I try to create a database in MySQL it tells me that access is denied for localhost. Any ideas ?

have you launched winmysqladmin.exe ? If so, as long as you have the same IP address as the server, you can use ' root ' for a username (no quotes) and either leave the password blank or enter a space for a password.

You can visit PHP.net and search for a function, and you find documentation on how to use mail();.

PHP 5.0.1 is good, but it won't be mainstream for at least more 3 months. PHP5 supports better OOP, but somethings have changed that will give some scripts problems. I could have written this guide using PHP5, but if you have had the same amount of experience with web technology as I have, you would understand why I picked PHP 4.3.8.

  b0b said:
You can visit PHP.net and search for a function, and you find documentation on how to use mail();.

PHP 5.0.1 is good, but it won't be mainstream for at least more 3 months. PHP5 supports better OOP, but somethings have changed that will give some scripts problems. I could have written this guide using PHP5, but if you have had the same amount of experience with web technology as I have, you would understand why I picked PHP 4.3.8.

Okey, i will install it with php 4.3.8 :)

Thanks for the explanation!

  • 3 weeks later...
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Get Windows 11 Home or Pro for only $9.97 with this coupon by Steven Parker Today's highlighted deal comes via our Apps + Software section of the Neowin Deals store, where you can save up to 92% off on a Microsoft Windows 11 Home, or Pro license. Upgrade your computing experience with Windows 11 Pro. This cutting-edge operating system boasts a sleek new design and advanced tools to help you work faster and smarter. From creative projects to gaming and beyond, Windows 11 delivers the power and flexibility you need to achieve your goals. With a focus on productivity, the new features are easy to learn and use, enhancing your workflow and efficiency. Whether you're a student, professional, gamer, or creative, Windows 11 Home has everything you need to take your productivity to the next level. New interface. easier on the eyes & easier to use Biometrics login*.Encrypted authentication & advanced antivirus defenses DirectX 12 Ultimate. Play the latest games with graphics that rival reality. DirectX 12 Ultimate comes ready to maximize your hardware* Screen space. Snap layouts, desktops & seamless redocking Widgets. Stay up-to-date with the content you love & the new you care about Microsoft Teams. Stay in touch with friends and family with Microsoft Teams, which can be seamlessly integrated into your taskbar** Wake & lock. Automatically wake up when you approach and lock when you leave Smart App Control. Provides a layer of security by only permitting apps with good reputations to be installed Windows Studio Effects. Designed with Background Blur, Eye Contact, Voice Focus, & Automatic Framing Touchscreen. For a true mouse-less or keyboard-less experience TPM 2.0. Helps prevent unwanted tampering Windows 11 Pro also includes a number of productivity-focused features, such as the ability to snap multiple windows together and create custom layouts, improved voice typing, and a new, more powerful search experience. Personal and professional users will enjoy a modern and secure computing experience, with improved performance and productivity features to help users get more done. Only on Windows 11 Pro If you require enterprise-oriented features for your daily professional tasks, then Windows 11 Pro is a better option. Set up with a local account (only when set up for work or school) Join Active Directory/Azure AD Hyper-V Windows Sandbox Microsoft Remote Desktop BitLocker device encryption Windows Information Protection Mobile device management (MDM) Group Policy Enterprise State Roaming with Azure Assigned Access Dynamic Provisioning Windows Update for Business Kiosk mode Maximum RAM: 2TB Maximum no. of CPUs: 2 Maximum no. of CPU cores: 128 Good to know This license is for Windows 11 only. It is NOT intended to be used for upgrading Microsoft Office (MSO) included in Parallels Pro. However, it will still work with Parallels Pro and allow you to run Windows applications including MSO, but it DOES NOT include an upgrade MSO itself. It is still compatible with Microsoft Office ONLY if you have a separate license for it. Length of access: lifetime Redemption deadline: redeem your code within 30 days of purchase Access options: desktop Max number of device(s): 1 Version: Windows 11 Pro Updates included Click here to verify Microsoft partnership For example, a Microsoft Windows 11 Pro license normally costs $199, but you can pick it up for just $14.97 for a limited time, that represents a saving of $184. For a full description, specs, and license info, click the link below. Get Windows 11 Home or Pro for just $9.97 use MSO5 coupon when checking out Coupon expires on June 29. Although priced in U.S. dollars, this deal is available for digital purchase worldwide. We post these because we earn commission on each sale so as not to rely solely on advertising, which many of our readers block. It all helps toward paying staff reporters, servers and hosting costs. Other ways to support Neowin Whitelist Neowin by not blocking our ads Create a free member account to see fewer ads Make a donation to support our day to day running costs Subscribe to Neowin - for $14 a year, or $28 a year for an ad-free experience Disclosure: Neowin benefits from revenue of each sale made through our branded deals site powered by StackCommerce.
    • I hoped it was a bug and will be fixed. Why haven't they made so it asks for a PIN in the dark then? It tries to use the camera for several minutes or I have to manually select PIN and the next day in the morning I'll have to manually select the camera back, because it will just be sitting and waiting for a PIN. It just remembers the last used method regardless of the lighting.
    • I would recommend PowerToys just to remap a Copilot button on modern laptops for something more useful than Microsoft allows in Windows Settings. I also use some other tools like "Always on Top" and "Crop and Lock".
    • Makes sense, we know MS doesn't take dark mode seriously, lol.
    • Why would you think Johny Ives is behind this ? he has not worked at Apple or on a smart Phone or Phone in general for long time On 27 June 2019, Apple announced that Ive would depart Apple after 27 years
  • Recent Achievements

    • Veteran
      1337ish went up a rank
      Veteran
    • Rookie
      john.al went up a rank
      Rookie
    • Week One Done
      patrickft456 earned a badge
      Week One Done
    • One Month Later
      patrickft456 earned a badge
      One Month Later
    • One Month Later
      Jdoe25 earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      640
    2. 2
      ATLien_0
      275
    3. 3
      +FloatingFatMan
      171
    4. 4
      Michael Scrip
      155
    5. 5
      Steven P.
      138
  • Tell a friend

    Love Neowin? Tell a friend!