Sunday, March 30, 2014

Localhost 403 Forbidden

When you typed in http://localhost and you got yourself Error 403, Forbidden You don't have permission to access / on this server. you have to open your httpd-vhost.conf file with Notepad++ or any text editor you use and add at this at the end of the file:


   DocumentRoot "C:\wamp\www"
   ServerName    localhost
   # ServerAlias   localhost


This is for when you use wamp. DocumentRoot is where your default directory for server. httpd-vhost.conf resides in C:\wamp\bin\apache\apache2.4.2\conf\extra

Good luck.

Sunday, March 16, 2014

Laravel 4.1 Tutorials and Resources

Here you will see list of tutorials and resouces that helped me to learn more about Laravel.

Enjoy :)

Blade Template
http://laravel.com/docs/templates
http://laravel.com/docs/html
http://daylerees.com/codebright/blade
http://daylerees.com/codebright/forms

I will update this list from time to time for you and me to lean about Laravel.