Wiki
Laravel is a free, open source PHP web application framework, designed for the development of MVC web applications. Laravel is released under the MIT license, with its source code hosted on GitHub.
Official Website laravel.com
Chinese Website www.golaravel.com
Video Tutorial
TutsPlus - Laravel Essentials ( Powered by Baidu ) Download Key: 6v5h
Zexo - Laravel Video Tutorial ( Powered by Baidu ) Download Key: mex2
Got a blank white screen after install Laravel by composer install? Since upgrading to Laravel 4.1, I've had white screen "errors" (WSOD) when the application could not write to the log location. I've always solved this by making the app/storage
directory writable by Apache (either group writable to www-data
or world-writable
- that depends on your server setup.
# Group Writable (Group, User Writable) $ sudo chmod -R gu+w app/storage # World-writable (Group, User, Other Writable) $ sudo chmod -R guo+w app/storage
Global Installation of Composer
$ curl -sS https://getcomposer.org/installer | php $ sudo mv composer.phar /usr/local/bin/composer
And if you're even more lazy, like me, you can create an alias, open .bashrc
file located in user directory. Go to the end of the file add the alias:
alias composer='/usr/local/bin/composer.phar'
Write and close the file, run source ~/.bashrc
. This way you can invoke composer with just composer
.