Installing Laramagz
Install on Server (Shared Hosting)
-
Upload
app-v1.3.4.zip
inpublic_html
.If your root home directory is different instead of
public_html
, please read the following instructions -
Extract it.
-
Move
laramagz
folder outside thepublic_html
folder. -
Select all files and folders in public laramagz then move them to
public_html
.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';
});