imhemayatsangin / How-to-deploy-Laravel-app-cPanel-the-right-way

Uploading and deployment of Laravel application to cPanel step by step guide.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to deploy Laravel app cPanel the right way?

Uploading and deployment of Laravel application to cPanel step by step guide.

  1. Create new folder(laravelapp) in the root directory at the same level with public_html
  2. zip your project files and then upload to the laravelapp folder and unzip there except the public folder in your project
  3. upload your public folder files to the public_html
  4. change your index.php file content in the line 34 and 47 as follows:
    34: require DIR.'/../laravelapp/vendor/autoload.php';
    47: $app = require_once DIR.'/../laravelapp/bootstrap/app.php';
  5. Check all your assets files are working well if not check the path and give correct path.
  6. Create the database and user for it.
  7. Give the credentials in the .env file and also change the app_url to your domain name and app_debug as follows:
    APP_DEBUG=false APP_URL=https://example.com DB_DATABASE=database DB_USERNAME=dbuser DB_PASSWORD=kH34Kf01@kd

How to create symlink and link your Storage/app/public folder to your public_html/Storage folder.

  1. Modify your filesyste.php file and check it in the repository. This file is located in your config folder of your project.

  2. If you can't run the artisan commands then you can create a rout as follows and run in your browser it will run the command to create link.
    Route::get("/storage-link", function () { $targetFolder = storage_path("app/public"); $linkFolder = $_SERVER['DOCUMENT_ROOT'] . '/storage';

    if (!is_link($linkFolder)) { symlink($targetFolder, $linkFolder); return 'Storage linked successfully'; } else { return 'Storage link already exists'; } });

  3. Now go to your browser and after the domain name write storage-link and hit enter
    https://example.com/storage-link

  4. Now your Storage/app/public will be linked to your public_html/Storage folder and if your images or Storage directory is giving the persmission error then you must check your permission where for the Storage the permission should be 0777 , for the sub folder 0755 and for the images and files 0644 should be the correct permissions to access.

    Note

Check the files in the repository for more details.
--------Done! Enjoy the show--------------

About

Uploading and deployment of Laravel application to cPanel step by step guide.


Languages

Language:PHP 100.0%