Installing Laramagz

Setup Database

  1. Create a new database.

  2. Import db-laramagz-v1.3.4.sql

Install on Server (Shared Hosting)

  1. Upload app-v1.3.4.zip in public_html.

    If your root home directory is different instead of public_html, please read the following instructions

  2. Extract it.

  3. Move laramagz folder outside the public_html folder.

    move laramagz
    move to root
  4. Select all files and folders in public laramagz then move them to public_html.

    select all move
    move files

    5. Edit the .env file according to your database.

The root home directory is not public_html

For example, the name of your root folder is httpdocs, then you have to adjust the env file as follows:

ROOT_PUBLIC=/../../httpdocs

You should also modify the file laramagz/app/Providers/AppServiceProvider.php on lines 33 - 35. Change public_html to httpdocs

$this->app->bind('path.public', function() {
    return base_path().'/../httpdocs';
});