+ All Categories
Home > Documents > Installation of Joomla on Windows XP using Apache, Mysql and PHP

Installation of Joomla on Windows XP using Apache, Mysql and PHP

Date post: 10-Apr-2015
Category:
Upload: rupesh-kumar-a
View: 15,016 times
Download: 1 times
Share this document with a friend
Description:
Installation of Joomla content management system on Windows XP using Apache,Mysql and PHP.
100
Installation of Joomla on Windows XP Rupesh Kumar A [email protected]
Transcript
Page 1: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Installation of Joomla on Windows XP

Rupesh Kumar [email protected]

Page 2: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Files Required

Versions used in this illustrationApache 2.2.2Php 5.2.8Mysql 4.1.11Joomla 1.5.8

Page 3: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Install Apache

Page 4: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 5: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 6: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 7: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 8: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 9: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 10: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 11: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 12: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 13: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Test Apache installation:Open any web browser and type http://localhost

in the address bar and press Enter

Feather icon on System Tray with a greenarrow indicates apache service running. Feather with

a red dot indicates that apache service is stopped

Page 14: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Open httpd.conf file with anytext editor

Page 15: Installation of Joomla on Windows XP using Apache, Mysql and PHP

add index.php here

Page 16: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 17: Installation of Joomla on Windows XP using Apache, Mysql and PHP

add at the end the following code:LoadModule php5_module “c:/php/php5apache2_2.dll”

AddType application/x-httpd-php .phpPHPIniDir “c:/php”

Page 18: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Save the file

Page 19: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Extract Php files to C:\php

Page 20: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 21: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Extracted folder ‘php’

Page 22: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Extracted files in C:\php folder

Page 23: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Copy php.ini-recommended file

Page 24: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Paste it in the same folder

Page 25: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Rename it to php.ini

Page 26: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 27: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Open php.ini with a text editor

Page 28: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Delete semicolon (;) at the beginningof include_path line

Page 29: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 30: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Add “C:\Program Files\Apache Software Foundation\Apache2.2\htdocs”as doc_root

Page 31: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 32: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Add “C:\php\ext” as extension_dir

Page 33: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 34: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Delete Semicolon (;) at the beginning of lineextension=php_gd2.dll

Page 35: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 36: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Delete Semicolon (;) at the beginning of lineextension=php_mbstring.dll

Page 37: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 38: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Delete Semicolon (;) at the beginning of lineextension=php_mysql.dll

Page 39: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 40: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Delete Semicolon (;) at the beginning of lineand add “C:\TEMP” for session.save_path

Page 41: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 42: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Save the file and close

Page 43: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Set Environment Variable for Php

Go to Start > Settings > Control Panel

Page 44: Installation of Joomla on Windows XP using Apache, Mysql and PHP

In Control Panel, double click on “System”.

In System Properties window,Click on “Advanced” Tab and

Click on “Environmental Variables”

Page 45: Installation of Joomla on Windows XP using Apache, Mysql and PHP

In “Environmental Variables” window,Click on Path variable under“System Variable” and click

“Edit” button

Page 46: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Add C:\php; at the end of Variable value. Click OK

Click OK for Environment VariablesAnd System Properties

Page 47: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Test Php Installation

Open Notepad and type the following code:<html><body><?php phpinfo() ?></body></html>

Page 48: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Save the file as test.php in C:\Program Files\Apache Software Foundation\

Apache2.2\htdocs

Page 49: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 50: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Restart Apache:Right Click on feather icon on System Tray

and click on “Open Apache Monitor”

Page 51: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Click Restart and then Exit

Page 52: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Open web browser and type http://localhost/test.php in the

address bar and press Enter. The php information page appears

Delete the file test.php soon after confirming about php installation.

Do not leave it in web server.

Page 53: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Install Mysql

Page 54: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 55: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 56: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 57: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 58: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Change destination folder to c:\mysql

Page 59: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 60: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 61: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 62: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 63: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Mysql Server Instance Configuration

Page 64: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 65: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Check this

Page 66: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Enter password for the root user

Page 67: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 68: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 69: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 70: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Open Command Prompt

Type cmd and click OK

Page 71: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Change directory to c:\mysql\bin

Page 72: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Enter mysql as root user

Page 73: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Enter root password

Page 74: Installation of Joomla on Windows XP using Apache, Mysql and PHP

The mysql console

Page 75: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Create the new database ‘joomla’

Page 76: Installation of Joomla on Windows XP using Apache, Mysql and PHP

List the databases

Page 77: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Quit mysql console

Page 78: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Exit the command prompt

Page 79: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Extract Joomla files to web server

Page 80: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Extract to C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\joomla

Page 81: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Extracted ‘joomla’ folder

Page 82: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Open Web browser

Enter http://localhost/joomla or http://localhost/joomla/installation/index.php

Page 83: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Joomla Installation Stages

Page 84: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 85: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 86: Installation of Joomla on Windows XP using Apache, Mysql and PHP

GNU GP License. Click Next

Page 87: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Enter Host name, database username & password, and database name

Page 88: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 89: Installation of Joomla on Windows XP using Apache, Mysql and PHP

FTP Settings not required for installationon Windows. Click Next.

Page 90: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Enter Site Name, admin’s email id, a newPassword for admin. Click “Install SampleData” (recommended for beginners)

Page 91: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Sample data installed successfully.Click Next

Page 92: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Joomla installation complete.Remove “installation” directory from

Web Server & then click Site or Admin

Page 93: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Open ‘joomla’ folder in web server & remove “installation” directory

Page 94: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Click “Site” to view Joomla installationsite or “Admin” to login as Administrator

Page 95: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Newly installed Joomla site

Page 96: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Click “Administrator” to login as Admin

Page 97: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Enter joomla admin username & passwordand click “Login”

Page 98: Installation of Joomla on Windows XP using Apache, Mysql and PHP
Page 99: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Joomla site administrator’s control panel

Page 100: Installation of Joomla on Windows XP using Apache, Mysql and PHP

Thanks

Apache TeamPhp TeamMysql TeamJoomla! Team

Please send comments & suggestions [email protected]


Recommended