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 what 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
3) installed composer:
Curl-ss Https://getcomposer.org/installer | Phpsudo MV Composer.phar/usr/local/bin/composer
4) Went to my HTML folder and created a new Laravel project using composer:
Cd/var/www/htmlcomposer Create-project Laravel/laravel--prefer-dist
5) Added Write permission s to the storage folder:
sudo chmod 777/var/www/html/laravel/storage
Now if I launch a browser and navigate to localhost/laravel/public a see a Blanc page.
Also, Error reporting in php.ini are set to E_all.
I ' m really struggling for quite some time now. Can someone help me with this? What am I missing?
thanks!
This article is from the "Mr_computer" blog, make sure to keep this source http://caochun.blog.51cto.com/4497308/1700141
Install laravel 5 on Ubuntu server