Difference between revisions of "LAMP"

From Ilianko
Line 10: Line 10:
 
  cd /var/www
 
  cd /var/www
 
  ls
 
  ls
 +
 +
Смяна правата на web директорията
  
 
== Инсталиране PHP ==
 
== Инсталиране PHP ==

Revision as of 10:19, 26 December 2011

Инсталиране Apache

sudo apt-get install apache2

За да се уверим, че работи през браузъра може да подадем заявка към новия web server.Трябва да видите следното съобщение "It works!"

http://Web-server-IP/

Намиране на web директорията и проверка съдържанието:

cd /var/www
ls

Смяна правата на web директорията

Инсталиране PHP

sudo apt-get install php5 libapache2-mod-php5

рестартиране Apache

sudo /etc/init.d/apache2 restart

Тестване Test PHP

To 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.

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

http://localhost/testphp.php

The page should look like this:

.