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

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?

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

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???

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.

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

    • There is a lot of reasons not to use Edge but faster fixes and security updates is not one of them.
    • Can't reproduce. I installed Edge, went to neowin.net > accepted the cookie consent > used menu to go to forums, everything loads and I can browse around the forums. If you can't interact with the dialog on the forums for some reason, go to the main site and accept the cookie consent there? It is true that the site will not function properly until the cookie consent is accepted or rejected,. it's a legal requirement and I also know that certain VPN/ad blockers block it, which is a user related issue and not a neowin.net problem.   This is not our cookie consent dialog. Gotta love browser hijacking... /s Edit: this may be what Californians see, I will confirm with our consent provider.
    • Google Chrome 149.0.7827.115 (offline installer) by Razvan Serea The web browser is arguably the most important piece of software on your computer. You spend much of your time online inside a browser: when you search, chat, email, shop, bank, read the news, and watch videos online, you often do all this using a browser. Google Chrome is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. Use one box for everything--type in the address bar and get suggestions for both search and Web pages. Thumbnails of your top sites let you access your favorite pages instantly with lightning speed from any new tab. Desktop shortcuts allow you to launch your favorite Web apps straight from your desktop. Chrome has many useful features built in, including automatic full-page translation and access to thousands of apps, extensions, and themes from the Chrome Web Store. Google Chrome is one of the best solutions for Internet browsing giving you high level of security, speed and great features. Important to know! The offline installer links do not include the automatic update feature. Download web installer: Google Chrome Web 32-bit | Google Chrome 64-bit | Freeware Download: Google Chrome Offline Installer 64-bit | Direct Link | 131.0 MB Download: Google Chrome Offline Installer 32-bit | Direct Link | 119.0 MB Download page: Google Chrome Portable Download: Chrome ARM64 | Direct Link View: Chrome Website | Release Notes Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Oh, it's happening on more than one dialog? This is the dialog that I'm unable to interact with.
    • WSCC - Windows System Control Center 10.0.3.8 by Razvan Serea Windows System Control Center is a free, portable program that allows you to install, update, execute and organize the utilities from various system utility suites. WSCC can install and update the supported utilities automatically. Alternatively, WSCC can use the http protocol to download and run the programs. WSCC is portable, installation is not required. Extract the content of the downloaded zip archive to any directory on your computer. Free for personal use. The setup packages and updates are downloaded directly from their author's website! This edition of WSCC supports the following utility suites: Windows Sysinternals Suite (including support for "Sysinternals Live" service) NirSoft Utilities Mitec and more... WSCC - Windows System Control Center 10.0.3.8 changelog: [NEW] update progress is now visible on the Windows taskbar [FIXED] fixed an issue with the Update dialog [FIXED] minor fixes Download: WSCC (64-bit) | 5.4 MB (Free for personal use) Download: WSCC (32-bit) | 6.3 MB View: WSCC Homepage | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • One Month Later
      Clizby earned a badge
      One Month Later
    • One Month Later
      Timaximus earned a badge
      One Month Later
    • Week One Done
      Timaximus earned a badge
      Week One Done
    • Rookie
      FBSPL went up a rank
      Rookie
    • First Post
      davidbazooked earned a badge
      First Post
  • Popular Contributors

    1. 1
      +primortal
      492
    2. 2
      PsYcHoKiLLa
      170
    3. 3
      +Edouard
      164
    4. 4
      Steven P.
      85
    5. 5
      ATLien_0
      77
  • Tell a friend

    Love Neowin? Tell a friend!