skip to Main Content

I am trying to upload a laravel project to cpanel hosting server. My laravel version is 5.3 and php version on the server is 5.6.

What I have done is:

  1. Create a folder called “online_system” to root of file manager.
  2. Copy contents of laravel project except public folder.
  3. Create a folder called “online_system” to public_html.
  4. Copy contents of public folder of laravel project.
  5. Jump to index.php file.
  6. Edit require __DIR__.'/../../online_system/bootstrap/autoload.php';
  7. Edit $app = require_once __DIR__.'/../../online_system/bootstrap/app.php';
  8. Change .env to link DB.
  9. Open domain/online_system.

enter image description here

Home page is working fine, but as long as I click login or register provided by laravel, then the website looks plain without css load.

enter image description here

How can I solve this problem?

3

Answers


  1. Give it a try

    <link rel="stylesheet" type="text/css"  href="{{ url('online_system/css/styl.css') }}" />
    
    Login or Signup to reply.
  2. I guess this will do the trick:

    <link rel="stylesheet" type="text/css"  href="/public/css/style.css"/>
    
    Login or Signup to reply.
  3. If your project is on the server and change your views, So clear view cache:

    php /path_to_your_project/ artisan view:clear
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search