-
Notifications
You must be signed in to change notification settings - Fork 12
Home
Chirag Gude edited this page Mar 6, 2015
·
3 revisions
- After a major app update, clear all cookies by changing the key in
/app/config/app.php - In Production, specify the environment for Artisan CLI command. For example to migrate the Migrations after the latest git pull:
php artisan migrate --env=production. Similarly to Seed the DB:php artisan db:seed --env=production - In
routes.php, All routes have to follow First-in-First-out scheme. If not, you might get the errorController not found -
php artisan clear-compiledandphp artisan optimize -
composer dump autoloadandphp artisan dump-autoload - Rollback all migrations and run them all again:
php artisan migrate:refresh - Seed the Database:
php artisan db:seed - XAMPP on Windows requires the
php.inito haveextension=php_openssl.dlluncommented
- Update from
laravel/laravel(develop) - Working on compile config file. (18th July) - onwards - Last updated with
laravel/laravel(master) on 24th Aug