2015年7月6日 星期一

mac The box 'ubuntu/trusty64' could not be found or could not be accessed in the remote catalog.

$ sudo vi Vagrantfile
Just before the end of the file and the line that contains “end” add the following option:-
1
config.vm.box_download_insecure=true


reference : http://www.grantlittle.me/vagrant-working-with-a-proxy/

2015年5月7日 星期四

Homestead.yml reload


You can run homestead up --provision to force the reload of the Homestead.yaml file.

2015年5月2日 星期六

What’s the difference between composer dump-autoload, composer update and composer install?

The above text already explains the difference between those commands, but for fast readers:
  • composer install installs the vendor packages according to composer.lock (or creates composer.lock if not present),
  • composer update always regenerates composer.lock and installs the lastest versions of available packages based on composer.json
  • composer dump-autoload won’t download a thing. It just regenerates the list of all classes that need to be included in the project (autoload_classmap.php). Ideal for when you have a new class inside your project.
    • Ideally, you execute composer dump-autoload -o , for a faster load of your webpages. The only reason it is not default, is because it takes a bit longer to generate (but is only slightly noticable)

reference : http://www.developed.be/2014/08/29/composer-dump-autoload-laravel/

Laravel 5 IDE Helper Generator

reference : https://github.com/barryvdh/laravel-ide-helper

2015年4月29日 星期三

Fix Laravel show blank page in homestead

Grant 777 permissions to below folders:
$ sudo chmod -R 777 ~/Code/Laravel/storage
$ sudo chmod -R 777 ~/Code/Laravel/bootstrap/cache

How to check Laravel errors

Check /var/log/nginx/homestead.app-error.log