Home > Backend Development > PHP Tutorial > Install laravel 5 on ubuntu server

Install laravel 5 on ubuntu server

WBOY
Release: 2016-06-23 13:25:32
Original
837 people have browsed it

Install laravel 5 on ubuntu server

http://laravel.io/forum/06-10-2015-solved-install-laravel-5-on-ubuntu-server

https://www.digitalocean.com/community/questions/how-to-install-laravel-5-on-ubuntu-nginx-server    

https://www.digitalocean.com/community/tutorials/how-to-install-laravel-with-an-nginx-web-server-on-ubuntu-14-04           

Hello,I'm trying to learn how to use laravel, but I am encountering a problem with the installation.I'm trying to install laravel on ubuntu server, so I:

1) Installed basic LAMP-stack

2) installed openssl and mcrypt:

sudo apt-get install opensslsudo apt-get install php5-mcryptsudo php5enmod mcrypt
Copy after login

3) Installed composer:

curl -sS https://getcomposer.org/installer | phpsudo mv composer.phar /usr/local/bin/composer
Copy after login

4) Went to my html folder and created a new laravel project using composer:

cd /var/www/htmlcomposer create-project laravel/laravel --prefer-dist
Copy after login

5) Added write permission s to the storage folder:

sudo chmod 777 /var/www/html/laravel/storage
Copy after login

Now when I launch a browser and navigate to localhost/laravel/public a see a blanc page.

Also, Error reporting in php.ini is set to E_ALL.

I'm really struggling for quite some time now..Can someone help me with this? What am I missing?

Thanks!



source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template