Reputation: 117
I have this page error that
This page isn’t working 35.173.0.77 is currently unable to handle this request.
HTTP ERROR 500
but it works fine in localhost and some other page as well.
I've tried to put ini_set('memory_limit', '-1');
and ini_set('memory_limit', '1024M');
both controller and model but that didn't work.
it works fine even in live server before but when I added some features, the error keep on showing. I checked my new line of codes and I don't think there's wrong in my new line of codes since its working in localhost.
Upvotes: 0
Views: 11088
Reputation: 169
The 500 Internal Server Error is a "server-side" error, meaning the problem is a problem with the web site's server. Please check your apache error logs, you can find some interesting information in there. Just in case:
Upvotes: 2