Monday, November 3, 2014

Laravel Installtion behind proxy

Step 01 : 
Open CMD With administrative privileges.
set HTTP_PROXY=http://user:password@proxy.domain.com:port
 
Step 02 :
download the latest version of the Laravel framework and extract its contents into a directory on your server.(c:\wamp\www\laravel)

Downlod the latest composer.phar file from https://getcomposer.org/download/ and set environment PATH variable to composer.phar file

Step 03 : 
 goto laravel folder on CMD and run composer install
or composer create-project laravel/laravel Foldername --prefer-dist



Now it is ready to work

  To configure Nginx for a Laravel application located within a subfolder, a  location  block is required to handle requests to that specifi...