![]() |
localhost is currently unable to handle this request. HTTP ERROR 500 - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: localhost is currently unable to handle this request. HTTP ERROR 500 (/showthread.php?tid=73447) |
localhost is currently unable to handle this request. HTTP ERROR 500 - zubairoliyat - 04-25-2019 I have this error when i am trying to access a website from wamp, it is done in codeigniter. Error: Code: localhost is currently unable to handle this request. HTTP ERROR 500 homeindex controller Code: <?php route Code: $route['default_controller'] = 'HomeIndex'; I am able to access other website which are not done using any frameworks. This website is done using codeigniter. I am not able to access the website. Can anyone tell me what is the problem? RE: localhost is currently unable to handle this request. HTTP ERROR 500 - php_rocs - 04-25-2019 @zubairoliyat, What is your controller name? The name of your controller file must begin with a capital letter ( https://codeigniter.com/user_guide/general/controllers.html?highlight=class%20name#let-s-try-it-hello-world ). RE: localhost is currently unable to handle this request. HTTP ERROR 500 - warrenfelsh - 01-11-2021 The error is too generic and does not tell you exact problem. What you need is to find out what is the real issue. If your site is serving a Internal Server Error, this can be caused by a number of things, such as:
Code: $ sudo chmod -R 777 /"your files location" The best way to debug the error depends upon the server and what's actually running at the time. Consider some debugging tips to help diagnose and fix common causes of this problem. |