Question
Is there a tutorial for installing Laravel 5 on a Ubuntu 14.04 LAMP stack ?
Is there a tutorial for installing Laravel 5 on a Ubuntu 14.04 LAMP stack ? I found some older tutorials, but nothing recent. When I do the installation I’m able to see the directory listing. I’ve tried chmod -R 775 storage, but that still didn’t work. Any help is appreciated. New to DO and Laravel. Thanks in advance.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×
To clarify, are you saying that you’re not able to see the directory listing? I was a little confused by your question. Did you follow this guide? http://laravel.com/docs/master/installation ? Or which guide did you use?
No, that’s all I can see if the directory structure. Even after using chmod -R 755 or chmod -R 775.
@KingCompass
Are you familiar with the CLI / OS software locations (Apache, PHP etc) and how did you go about installing Laravel? (Downlad from GitHub Repo, Git Clone, Composer etc)?
(asking before requesting more technical information)
–
PHP files should only require
chmod 0644
in most all cases, unless there’s something more specialized about your configuration; directories, however, would needchmod 0755
.