Before we begin, I suppose your first question is "What is Laravel?" Laravel is a free, open source PHP web application framework, designed for the development of MVC web applications. Laravel is built on top of several Symfony components, giving your application a great foundation of well-tested and reliable code.


The Easy Way:
As a GlowHost customer, you can always install Laravel in just one click. It can be found in your GlowHost control panel when you click on the Softaculous Icon.

Click image for larger version. 

Name:	softaculous-laravel.jpg 
Views:	23501 
Size:	183.3 KB 
ID:	507



We'll show you how to install it manually for those of you who are interested in what's happening behind the scenes or want to learn how to install this without an auto-installer.

1. You will need SSH access. Please contact us and we will enable normal shell for your account.

2. Install Composer (it is a dependency manager for PHP, and required for Laravel). Please note, you can always ask our support to do this. If you decide to perform installation on your own, please use these commands:

a)
PHP Code:
user@server [~]# cd bin/
user@server [~/bin]# wget https://getcomposer.org/installer
user@server [~/bin]# php installer --check
All settings correct for using Composer
user
@server [~/bin]# php installer
All settings correct for using Composer
Downloading
...

Composer successfully installed to: /home/user/bin/composer.phar
Use itphp composer.phar
user
@server [~/bin]# rm -f installer 
Composer's site, getcomposer.org, suggests to run this command: "curl -sS https://getcomposer.org/installer | php", but no professional would execute a script without checking it first.

A Small Tip #1:
Add the following lines to ~/.bashrc to run the commands as "composer" instead of the full command of "php -d disable_functions= ~/bin/composer.phar":

PHP Code:
alias php="php -d disable_functions="
alias composer="php ~/bin/composer.phar" 
"-d disable_functions=" is very important parameter here, because composer requires some disabled functions (like escapeshellarg or proc_open).

b) Install your first project:
PHP Code:
user@server [~/public_html]# mkdir project/
user@server [~/public_html]# cd project/ 
create composer.json file with the following code:

PHP Code:
{
"require": {
"monolog/monolog""1.0.*"
}

and run:
PHP Code:
user@server [~/public_html/project]# composer install
Loading composer repositories with package information
Installing dependencies 
(including require-dev)
Installing monolog/monolog (1.0.2)
Downloading100%

Writing lock file
Generating autoload files 
Great, everything is working! Now you can remove your first project

3. Install Laravel:

PHP Code:
user@server [~]# mkdir project
user@server [~]# cd project/
user@server [~/project]#


user@server [~/project]# composer create-project laravel/laravel --prefer-dist 
Important: for some reasons laravel installation requires 390Mb of RAM (and this is not mentioned on their site), so if you are planning to install Laravel, please consider our Professional Hosting Package, since it will satisfy all the requirements.
Don't worry if you get the following error:

PHP Code:
Script php artisan optimize handling the post-install-cmd event returned with an error

  
[RuntimeException]
  
Error Output:

    [
Symfony\Component\Process\Exception\RuntimeException]
    
The Process class relies on proc_openwhich is not available on your PHP installation.

  
optimize [--force] [--psr
That is because the post-install-cmd scripts are running from a parent process and without our settings (see tip #1). All you need to do to fix the problem is to manually run post-install-cmd scripts (view composer.json file in laravel/ folder).

Here is an example:

PHP Code:
user@server [~/project/laravel]# php artisan clear-compiled
user@server [~/project/laravel]# php artisan optimize
Generating optimized class loader
Compiling common classes 
Same thing when you are running the update for Laravel.
A Small Tip #2:

Hosting with Glowhost you can set custom PHP version in your cPanel ("Select php version" area) where you can enable "proc_open" function for your whole account. If you changed PHP version, please make sure that Phar and Json extentions are enabled.

An Important Tip #3 (special for cPanel servers):

Now we need to remove the public_html folder and make a symbolic link to public folder in our project (please be sure that the public_html folder is empty or you have a fresh backup copy of any data you may have there):

PHP Code:
user@server[~]# cd ~
user@server[~]# rm -rf public_html/
user@server[~]# ln -s project/laravel/public/ public_html 
CHECK THE SITE:
Click image for larger version. 

Name:	laravel.jpg 
Views:	23673 
Size:	59.0 KB 
ID:	508




P.S. Some configuration or paths may be different. We only show you an example of installation. Each case is unique.