Installing PHP on a linux box is far from complicated. There is several guides and HOWTO. If this page is not enough for you. Google: LAMP-server ubuntu.
LAMP is acronym for Linux, Apache, MySQL, PHP. And thats everything you need for developing PHP. Start by type the following in a terminal.
sudo apt-get update sudo apt-get install apache2 php5 php5-cli libapache2-mod-php5 mysql-server php5-mysql php5-mcrypt
Restart the server.
sudo /etc/init.d/apache2 restart
Go to http://localhost and see if It works!
Apache 2 needs to be configured according to the instuctions found in the Symfony cookbok / Jobeet tutorial.
Virtual hosts
To enable virtual hosts in ubuntu, create /etc/apache2/sites-available/YOURSITE.com with the following content:
<VirtualHost *:80> ServerAdmin webmaster@localhost ServerName YOURSITE.com ServerAlias *.YOURSITE.com

Kommentarer
7 weeks 6 hours ago
7 weeks 1 day ago
7 weeks 4 days ago
9 weeks 5 days ago
10 weeks 22 hours ago
10 weeks 6 days ago
21 weeks 4 days ago
21 weeks 6 days ago
21 weeks 6 days ago
22 weeks 1 day ago