Kidnap' Blog

Dunia Tanpa Batas

APACHE PHP MYSQL

Langkah Pertama download file-file yang dibutuhkan :

  1. Apache
  2. PHP
  3. Mysql

Instal Apache

Download the Microsoft Installer ( .msi ) package. Just double click on the icon to run the installation wizard. Click next until you see the Server Information window. You can enter localhost for both the Network Domain and Server Name. As for the administrator’s email address you can enter anything you want.

I’m using Windows XP and installed Apache as Service so everytime I start Windows Apache is automatically started.

gmb11.jpg

Click the Next button and choose Typical installation. Click Next one more time and choose where you want to install Apache ( I installed it in the default location C:\Program Files\Apache Group ). Click the Next button and then the Install button to complete the installation process.

To see if you Apache installation was successful open up you browser and type http://localhost in the address bar. You should see something like this :

gmb2.jpg

Another configuration you may want to change is the directory index. This is the file that Apache will show when you request a directory. As an example if you type http://www.php-mysql-tutorial.com/ without specifying any file the index.php file will be automatically shown.

Suppose you want apache to use index.html, index.php or main.php as the directory index you can modify the DirectoryIndex value like this :

DirectoryIndex index.html index.php main.php

Now whenever you request a directory such as http://localhost/ Apache will try to find the index.html file or if it’s not found Apache will use index.php. In case index.php is also not found then main.php will be used.

Tinggalkan komentar