Questions tagged [http-status-code-500]

Use for questions where the server throws 500 Internal Server Error and the server is not in your control. For servers in your control, look through the server logs to pinpoint the actual problem

The 500 Internal Server Error is a catch-all error code that can mean literally anything. Instead, look through server logs, etc and try to pinpoint the actual problem and tag it accordingly.

The relevant section of the HTTP protocol:
http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html

More information about codes returned from IIS 7:
http://support.microsoft.com/kb/943891

745 questions
-2
votes
1 answer

Symfony - Heroku deployment get Error 500

I try to deploy my first app in Symfony 5 with Heroku and sadly ... I got an error (500) :'( My configs var are set on APP_ENV=prod There is my heroku logs if you can help me : 2021-01-25T00:38:59.425242+00:00 app[web.1]: #11…
Valou
  • 1
  • 1
-2
votes
1 answer

Vietnamese language input method

I'm from Vietnam, We setup a kiwi server, it runs ok. But my problem is I can not write in Vietnam language when we create test case, test plan or write describe. It shows: " 500 Internal error" Could you pls show me how to fix it. Thanks.
-2
votes
3 answers

HTTP 500 Internal server error, in android release build

I have a retrofit call to my server that returns JSON data. I have been working on the debug build since the first day and everything looked fine. Just yesterday I generated a release build (android) and found the call is failing with exception as…
-2
votes
1 answer

Getting 500 error when trying to call PHP function via AJAX

I am trying to send trigger an email when a user completes a webform. However I am getting the following error Appreciate any advise on how to resolve this error. JS file that will call the php function $(function() { $('.error').hide(); …
Zhen
  • 12,361
  • 38
  • 122
  • 199
-2
votes
3 answers

PHP: array declaration causes Error 500

I encountered a strange problem today: this simple code it's causing error 500. $ret = array(); $ret["lat"] = array(): it looks like doing anything wit $ret after is has been declared causes the error. I also tried: $ret = array("lat" => array(),…
jack_the_beast
  • 1,838
  • 4
  • 34
  • 67
-3
votes
1 answer

remove a virus on wordpress

For a few days now my wordpress website has a virus. The website is unresponsive, I get error 500 when trying to access it. The admin panel has a popup window written in russian…
aName
  • 11
  • 5
-3
votes
3 answers

Htaccess misconfiguration error 500

I have implemented a new .htaccess file at http://www.ssdpsjal.tk My code is - RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ n/index.php/$1 [L] RewriteRule ^$ /index [L] Redirect…
-4
votes
0 answers

Why does the web code for the Snapchat Bitmoji Kit lead to a "Something Went Wrong Error"?

I am trying to implement the Snapchat Bitmoji Kit into a webpage using the Javascript implementation. Here is the code I am following: https://github.com/Bitmoji/BitmojiForDevelopers/blob/main/docs/vanilla-sticker-picker/index.html I am able to get…
-7
votes
1 answer

A Query In the String

I didn't know what to write about the title of the problem:) I want to add a string to the query but I get internal 500 error $arr = json_decode($json, true); $name = "Peter"; echo $arr[$name]; // Output: 65 It's correct but, $obj =…
1 2 3
49
50