How to Host Laravel project in cPanel easiest way ✔️
Do you know how to host a Laravel project in Cpanel? Lots of programmers having troubles while uploading laravel applications into a Cpanel shared hosting server.
even me in the first place. I spend some time figuring it the most common issues you may face while uploading the laravel application.
in this video, i am explaining all these issues and solutions
- Uploading laravel app into Cpanel
- Adding Htaccess file
- Connecting with database
- Handling env file error in MySQL database connection
- Make it live
Upload Laravel in Cpanel Step By Step
# First, you have to make a zip of your project on your computer.
Then you can open your Cpanel and upload that into it. All files should be in the public_html folder
# Once you upload and extract the files we have to make an htaccess rewrite rule
(which is helps when someone visits the website they automatically go to the public directory)
You can find the code bottom of this page.
If you are Laravel Developer you should checkout our other laravel tutorials
If you having a database with your project you have to go to your Cpanel and create a MySQL user and password also a database.
Once that is done, you have to export your database from your localhost and import it into your Cpanel database
You have to change the database details inside your env file. if you are getting can’t to connect error after this you can add a single quote ‘database username’ , ‘databasepassword’ like this in the env file. Then it will work perfectly.
Learn How to upload Laravel 8 to Cpanel using this video
laravel 8 cpanel htaccess code
<IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^(.*)$ public/$1 [L] </IfModule>
Download .Htaccess File :
If you follow the step which I am explained in the video you could be able to host your Laravel application.
Share with your friends:
How To Generate A PDF from HTML in Laravel 11
Hello , I was trying to generate a PDF payment receipt for my SAAS application and when i search for […]
June 22, 2024
How to create Laravel Flash Messages
Laravel flash messages are a convenient way to display one-time notifications to the user after a form submission or other […]
December 22, 2022
How to make Custom Artisan Command in Laravel
Custom Artisan commands are a useful feature of Laravel that allow you to define your own command-line commands for tasks […]
December 22, 2022
Tips for Laravel migrations
Laravel migrations are a powerful tool for managing and modifying your database schema in a structured and organized way. Here […]
December 22, 2022
Digital Marketing Toolkit
Get Free Access to Digital Marketing Toolkit. You can use all our tools without any limits
Get Free Access Now
Leave a Reply