Josh
  • Introduction
  • Philosophy
  • Contribution
  • Videos
  • Laravel 5.7
  • Laravel 5.6
  • Laravel 5.5
  • Laravel 5.4
  • Laravel 5.2, 5.3
    • Installating JOSH
    • Fresh Installation
  • Laravel 5.1
    • Installation
      • Database setup
      • Permissions
      • Mail Setup
      • Copying Josh Files
      • Install Josh
    • Customize whoops,...
    • usage
      • change skin
  • Laravel 5 Version
    • Installation
      • Database & Environment setup
      • Permissions
      • Mail Setup
      • Copying Josh files
      • Install Josh
    • FAQ
  • Laravel 4 Version
    • Features & Requirements
    • Installation
      • Database
      • Permissions
      • Mail
      • Copying Josh files
      • Install Josh
  • Laravel resources
    • Packages
    • Learning Laravel
    • Hosting
  • GUI CRUD
  • GULP
  • HTML Version
    • Layout
      • Header
      • Left Menu
      • Container
      • Footer Scripts
    • New Page
    • Boxed Version
    • UI Elements
    • Plugins Used
    • Images Used
    • Fonts Used
  • Updates
  • 3.0
    • 3.0.1
    • 3.1
    • 3.1.1
    • 3.1.2
    • 3.2
    • 3.2.1
    • 3.2.2
    • 3.2.3
    • 3.2.4
    • 3.2.5
    • 3.2.5.1
    • 3.2.6
  • 4.0
    • 4.0.1
    • 4.1
    • 4.2
    • 4.3
    • 4.3.1
    • 4.3.2
  • 5.0
  • Social Login
  • Recaptcha
Powered by GitBook
On this page
  • 5.5 Installation
  • Get Composer packages
  • permissions
  • database credentials
  • Generate Key
  • add tables to databaes
  • add admin to users table
  • compile assets
  • Congratulations

Was this helpful?

Laravel 5.5

5.5 Installation

The zip file contains all laravel files integrated with josh, however you need to perform following steps to get vendors etc.

Get Composer packages

composer install

permissions

chmod -R 775 storage

chmod 775 bootstrap/cache

If you are on linux/ mac you can run below command to chown it.

chown -R www-data /var/www

database credentials

cp .env.example .env

open .env and modify database details with yours

Generate Key

php artisan key:generate

add tables to databaes

php artisan migrate

add admin to users table

php artisan db:seed --class=AdminSeeder

compile assets

If you don't have good knowledge on nodejs and npm, you can copy public folder files from codecanyon's downloaded files

Note : The above step is completely optional , if you are not comfortable with this, you can skip it and perform the below steps, still it works fine.

you can check installed version by running node -v command in terminal.

For laravel 5.5 , the minimum version of php required is 7.0.0 and

the following php extensions are rquired

  • PHP >= 7.0.0

  • OpenSSL PHP Extension

  • PDO PHP Extension

  • Mbstring PHP Extension

  • Tokenizer PHP Extension

  • XML PHP Extension

install local packages

yarn install

get bower components

bower install

move assets to public

npm run dev

Note: If bower gives warning that you are running as administrator, please run the command bower install --allow-root

Congratulations

open your website and now it should be fully working :)

PreviousLaravel 5.6NextLaravel 5.4

Last updated 5 years ago

Was this helpful?

Make sure you have installed in your system with minimum version 6.10.0,

If you are having older version, please install latest version from

nodejs
nodejs.org