- php, apache, mysql, windows _ wampserver

5
11/28/2015 - PHP, Apache, MySQL, Windows : WampServer http://forum.wampserver.com/read.php?2,74970,printview,page=1 1/5 WampServer Apache, PHP, MySQL on Windows Home forum Back to WampServer presentation Downloads Addons Trainings Alter Way wamp in linux Posted by: muhammedbasilsk (49.137.226.) Date: June 15, 2011 02:47PM how do install wamp in linux(ubuntu)???? Re: wamp in linux Posted by: yfastud (Moderator) Date: June 15, 2011 08:32PM Download and install Ubuntu server version which already have LAMP Have fun, FREE One A Day FREE Photo FREE Games FREE Websites FREE Portable GPS FREE WAMP Guides Re: wamp in linux Posted by: sasa (210.212.249.) Date: June 16, 2011 12:18PM Install Apache To start off we will install Apache. 1. Open up the Terminal (Applications > Accessories > Terminal).

Upload: hendri-ekasatria

Post on 17-Feb-2016

220 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: - PHP, Apache, MySQL, Windows _ WampServer

11/28/2015 - PHP, Apache, MySQL, Windows : WampServer

http://forum.wampserver.com/read.php?2,74970,printview,page=1 1/5

WampServerApache, PHP, MySQL on Windows

Home forumBack to WampServerpresentationDownloadsAddonsTrainingsAlter Way

wamp in linuxPosted by: muhammedbasilsk (49.137.226.­­­)Date: June 15, 2011 02:47PM

how do install wamp in linux(ubuntu)????

Re: wamp in linuxPosted by: yfastud (Moderator)Date: June 15, 2011 08:32PM

Download and install Ubuntu server version which already have LAMP

Have fun,

FREE One A DayFREE PhotoFREE GamesFREE WebsitesFREE Portable GPSFREE WAMP Guides

Re: wamp in linuxPosted by: sasa (210.212.249.­­­)Date: June 16, 2011 12:18PM

Install ApacheTo start off we will install Apache.

1. Open up the Terminal (Applications > Accessories > Terminal).

Page 2: - PHP, Apache, MySQL, Windows _ WampServer

11/28/2015 - PHP, Apache, MySQL, Windows : WampServer

http://forum.wampserver.com/read.php?2,74970,printview,page=1 2/5

2. Copy/Paste the following line of code into Terminal and then press enter:

sudo apt­get install apache2

3. The Terminal will then ask you for you're password, type it and then press enter.

Testing Apache

To make sure everything installed correctly we will now test Apache to ensure it is working properly.

1. Open up any web browser and then enter the following into the web address:

[localhost]

You should see a folder entitled apache2­default/. Open it and you will see a message saying "It works!" ,congrats to you!Install PHPIn this part we will install PHP 5.

Step 1. Again open up the Terminal (Applications > Accessories > Terminal).

Step 2. Copy/Paste the following line into Terminal and press enter:

sudo apt­get install php5 libapache2­mod­php5

Step 3. In order for PHP to work and be compatible with Apache we must restart it. Type the followingcode in Terminal to do this:

sudo /etc/init.d/apache2 restart

Test PHPTo ensure there are no issues with PHP let's give it a quick test run.

Step 1. In the terminal copy/paste the following line:

sudo gedit /var/www/testphp.php

This will open up a file called phptest.php.

Step 2. Copy/Paste this line into the phptest file:

<?php phpinfo(); ?>

Step 3. Save and close the file.

Page 3: - PHP, Apache, MySQL, Windows _ WampServer

11/28/2015 - PHP, Apache, MySQL, Windows : WampServer

http://forum.wampserver.com/read.php?2,74970,printview,page=1 3/5

Step 4. Now open you're web browser and type the following into the web address:

[localhost]

Congrats you have now installed both Apache and PHP!

Install MySQLTo finish this guide up we will install MySQL. (Note ­ Out of Apache and PHP, MySQL is the mostdifficult to set up. I will provide some great resources for anyone having trouble at the end of this guide.)

Step 1. Once again open up the amazing Terminal and then copy/paste this line:

sudo apt­get install mysql­server

Step 2 (optional). In order for other computers on your network to view the server you have created, youmust first edit the "Bind Address". Begin by opening up Terminal to edit the my.cnf file.

gksudo gedit /etc/mysql/my.cnf

Change the line

bind­address = 127.0.0.1

And change the 127.0.0.1 to your IP address.

Step 3. This is where things may start to get tricky. Begin by typing the following into Terminal:

mysql ­u root

Following that copy/paste this line:

mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('yourpassword');

(Make sure to change yourpassword to a password of your choice.)

Step 4. We are now going to install a program called phpMyAdmin which is an easy tool to edit yourdatabases. Copy/paste the following line into Terminal:

sudo apt­get install libapache2­mod­auth­mysql php5­mysql phpmyadmin

After that is installed our next task is to get PHP to work with MySQL. To do this we will need to open afile entitled php.ini. To open it type the following:

gksudo gedit /etc/php5/apache2/php.ini

Now we are going to have to uncomment the following line by taking out the semicolon ( .

Page 4: - PHP, Apache, MySQL, Windows _ WampServer

11/28/2015 - PHP, Apache, MySQL, Windows : WampServer

http://forum.wampserver.com/read.php?2,74970,printview,page=1 4/5

Change this line:

;extension=mysql.so

To look like this:

extension=mysql.so

Now just restart Apache and you are all set!

sudo /etc/init.d/apache2 restartThe EndQuick note to anyone who encountered problems with setting up the MySQL password, please refer tothis page: MysqlPasswordReset

I applaud everyone who has taken the time to read this guide. This guide is also my first ever so I wouldlove to hear back from the public on what you guys think! Just don't be too harsh.

If you have questions about installing any part of LAMP just drop them in the comment box and I will domy best to help you out.

by [email protected]

Re: wamp in linuxPosted by: yfastud (Moderator)Date: June 16, 2011 05:31PM

Nice guide but it's much easier and more efficiency to install Ubuntu Server than setup LAMP on UbuntuDesktop version; then only 1 command to get GUI

sudo apt­get ubuntu­desktop

Have fun,

FREE One A DayFREE PhotoFREE GamesFREE WebsitesFREE Portable GPSFREE WAMP Guides

Great guide! Posted by: nilsnh (­­­.79­161­163.customer.lyse.net)Date: June 27, 2011 06:44AM

Hi there. Stumbled upon your post by searching the web for a way to setup a LAMP server. Thanks forwriting a neat guide. ^_^

Re: wamp in linuxPosted by: deepesh (14.139.56.­­­)

Page 5: - PHP, Apache, MySQL, Windows _ WampServer

11/28/2015 - PHP, Apache, MySQL, Windows : WampServer

http://forum.wampserver.com/read.php?2,74970,printview,page=1 5/5

Date: February 08, 2013 02:00PM

where we have to put the website to upload it

Go to: Forum List•Message List•Search•Log InSorry, only registered users may post in this forum.

Click here to login