Difference between revisions of "LAMP"

From Ilianko
Line 11: Line 11:
 
  ls
 
  ls
  
Смяна правата на web директорията
+
Създайте в web директорията нов файл с произволен текст.
 +
 
 +
sudo nano index2.html
 +
 
 +
За да видите съдържанието на новия файл през web сървъра заредете в браузъра:
 +
http://Web-server-IP/index2.html
  
 
== Инсталиране PHP ==
 
== Инсталиране PHP ==

Revision as of 10:24, 26 December 2011

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

sudo apt-get install apache2

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

http://Web-server-IP/

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

cd /var/www
ls

Създайте в web директорията нов файл с произволен текст.

sudo nano index2.html

За да видите съдържанието на новия файл през web сървъра заредете в браузъра:

http://Web-server-IP/index2.html

Инсталиране 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:

.