Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

currently unable to handle this request HTTP ERROR 500 [closed]

I have transferred my shopping cart files from local to live. The shopping cart which i am using is Interspire.

When I load the page, it shows me this error

currently unable to handle this request.

The domain is http://4living.de/

I hope to discover why it is showing this error.

like image 893
Javaid Ahmad Avatar asked Dec 09 '16 14:12

Javaid Ahmad


People also ask

What does HTTP Error 500 mean?

The HTTP status code 500 is a generic error response. It means that the server encountered an unexpected condition that prevented it from fulfilling the request. This error is usually returned by the server when no other error code is suitable.


2 Answers

Your site is serving a 500 Internal Server Error. This can be caused by a number of things, such as:

  • File Permissions
  • Fatal Code Errors
  • Web Server Issues

EDIT

As you have highlighted it is a permission issue. You need to ensure that your files are executable by the web server user

Please see below article for some guidance on proper file permissions. https://www.digitalocean.com/community/questions/proper-permissions-for-web-server-s-directory

like image 158
scottevans93 Avatar answered Oct 15 '22 07:10

scottevans93


I was having "(...) unable to handle this request. http error 500" and found out it was from a require_once that was working locally, on a windows machine, with backslash (\) as separator for directories but when i uploaded to my server it stopped working. I changed it to forward slash (/) and now is ok.

require_once ( 'cards\cards.php' ); // **http error 500**

require_once ( 'cards/cards.php' ); // OK
like image 39
Bruno Silva Avatar answered Oct 15 '22 06:10

Bruno Silva