![]() |
500 Error - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: Installation & Setup (https://forum.codeigniter.com/forumdisplay.php?fid=9) +--- Thread: 500 Error (/showthread.php?tid=68742) |
500 Error - bjacobs - 08-18-2017 I'm getting a 500 error. However, through debugging I can see it is properly setting the root directory as public_html, it is loading the index.php in the root directory, it is loading the config.php and database.php, and it is loading the routes.php. In my routes.php I have: $route['default_controller'] = "home"; I am trying to load on a heroku staging server using the heroku-php-apache2 buildpack. When I go to the homepage, the root, I'm getting a 500 error and it is not loading the home/index controller method like it is supposed to. When I reference a css file, such as https://staging-app/css/grid.css, it does load that. In case needed, my .htaccess is PHP Code: <IfModule mod_rewrite.c> Any ideas on where I could be going wrong to get a 500 error or how I can track it down? |