Search code examples
phpcodeigniterhostmonster

Unable to load the requested file - codeigniter on hostmonster server


I've been trying to host an application design with codeigniter framework for days on at hostmonster.com but I continued having this disturbing error -

An Error Was Encountered Unable to load the requested file: Desktop\resourceBatch\stylesheets.php

NB: Desktop\resourceBatch\stylesheets.php is a directory I manually created within my "view" folder

Though the same application is working perfectly on my local machine.


Solution

  • It took me months to figure this out. Avoid these mistakes.

    1. I removed all capital letters on my folder names e.g

      Desktop\resourceBatch\stylesheets.php to

      desktop\resourcebatch\stylesheets.php

    2. changed all \ to /

    $this->load->view('desktop\resourcebatch\stylesheets.php'); 
    

    to

       $this->load->view('desktop/resourcebatch/stylesheets.php');