70 questions
89
votes
6
answers
510k
views
500 Internal Server Error for php file not for html [duplicate]
My site having 4-5 static pages only. index.html & index.php both are there. index.html is working fine. If I change to index.php, it's giving 500 Internal Server Error. I don't know where is my ...
9
votes
5
answers
59k
views
Getting Internal Server Error while trying to access my site
I am getting this error.
Internal Server Error
The server encountered an internal error or misconfiguration and was
unable to complete your request.
Please contact the server ...
35
votes
3
answers
30k
views
How do you diagnose a 500 error on Heroku when there is no error message in the logs?
I have a Rails app on Heroku that is serving 500 errors at random intervals. Web pages will display "Internal server error" in plain text, instead of the usual "We're sorry. Something went wrong." ...
13
votes
13
answers
164k
views
CodeIgniter 500 Internal Server Error
I downloaded a PHP script written using CodeIgniter. when I run it from the localhost, on going to the admin folder, it shows localhost again. Also when running from my web host, it shows a 500 ...
3
votes
1
answer
3k
views
Internal Server Error 500 w/ IIS Log
I am getting some errors on my classic asp website. When the website runs for the first time it sometimes does an Internal Server Error. Then a refresh would fix it. I decided to check my IIS logs to ...
8
votes
4
answers
12k
views
PHP Upload - 500 Internal Server Error
The Issue
When uploading files of around 8MB or over, I recieve a 500 Internal Server Error.
All PHP settings in php.ini are correct
maxAllowedContentLength has been set in the web.config
Server Info
...
5
votes
2
answers
13k
views
Internal Server Error [duplicate]
I am working on an SMS Sending application and for login purpose i want to send the username and password using POST method from my Android Application to the web server.
When I click on lo-gin ...
3
votes
4
answers
9k
views
WordPress Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 77 bytes) in wp-includes/wp-db.php on line 1832
I noticed recently on my WordPress website I'm getting sometimes 500 Internal Server Error. I checked logs and I have many lines like:
[Mon Oct 03 01:25:24.357439 2016] [fcgid:warn] [pid 12840] [...
1
vote
1
answer
555
views
Wordpress Dashboard Login Internal 500 Error
The company I work for is currently using WordPress platform for their website. Since I have been with this company for a year there have been a lot of Internal 500 errors with the website. The most ...
0
votes
1
answer
3k
views
$http post resulting in 500 (Internal Server Error) with C# MVC after adding properties to built in User
I'm getting a 500 Internal Server error when trying to register a new user with ASP.net's built in user authentication.
This was previously working for me, but now I've attempted to add a FirstName ...
0
votes
2
answers
3k
views
500 Internal Server Error - Wordpress
I have uploaded a Wordpress site under the following subdomain - http://wptest.paddingtonterraces.com.au/
I am getting '500 Internal Server Errors' for everything that is grabbed from outside the ...
53
votes
7
answers
299k
views
Axios POST request fails with error status code 500: Internal Server error
I'm trying to send a POST request locally with a username and password in the body through Axios.
I'm deploying a Flask app on http://127.0.0.1:5000/login, which handles the /login route. The POST ...
20
votes
4
answers
49k
views
PHP not displaying errors - Internal Server Error (500) [duplicate]
I've set up a fresh install of Ubuntu Server 12.04 LTS on Amazon AWS with *Apache2/MySQL/PHP5. When I run a PHP script and it encounters an error I don't see any error reporting from PHP, all I see is
...
15
votes
1
answer
15k
views
When should I return HTTP Status Code 500 (Internal Server Error) from REST application to client?
I have seen people using the HTTP code 500 as a generic error code for all kind of error cases (server errors, http errors, code exceptions, expected record not found in DB, time-out exceptions etc). ...
4
votes
0
answers
558
views
Many responses from IIS are ending in OperationCanceledException resulting in 500 Internal server error
We have one problem in a Production environment but we don’t see any issues in the local DEV environments.
Problem:
I have one API
- /api/GenerateAutoPdf/{Guid} (POST)
Based on the response from ...
4
votes
4
answers
44k
views
Problem about 500 Internal Server Error in Python Flask [closed]
This is my Python code:
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/profile/<name>")
def profile(name):
return render_template("index.html", name=name)
if ...
3
votes
1
answer
38k
views
Symfony 3 Apache 500 Internal Server Error
I'm using Symfony 3.2.3 and switched from PHP built-in Web Server to Apache (http://symfony.com/doc/current/setup/web_server_configuration.html, Apache 2.4.18).
It works for the root Symfony page (...
3
votes
1
answer
14k
views
Laravel 5 - Cache remember doesn't work
I have tried to cache some queries with Cache::remember(); but it doesn't work.
My script response code is 500(Internal Server Error).
Here is my code:
$filters = \Cache::remember("cache_filter", ...
3
votes
3
answers
2k
views
How do I debug error 500's served up by the DJango test server?
I'm trying to debug my DJango Paypal IPN integration but I'm struggling. The Django dev server reports a 500 error to the console (but no other details) and the IPN test tool reports a 500 error but ...
3
votes
4
answers
29k
views
wamp server 500 internal server error
i have a website running on XAMPP.
i don't know about its version of php that the web site is written by and version of apache too.
I want to move it on windows but got the message 00-Internal ...
2
votes
3
answers
7k
views
Getting response code 200 in Postman but not on Android Network library
I have a POST method API which is giving 200 response code in Postman but not when calling api by using Volley or even in Retrofit2.
Here is Postman screenshots:
Here what i did for Volley library ...
2
votes
1
answer
2k
views
Django on Production for POST request throws Server Error(500) on compute engine
I have deployed my Django 1.10 with python 3.6 Project on Google compute engine when I have changed Debug = True in my settings.py to Debug = False it throws Server Error (500) on one of my post ...
2
votes
4
answers
2k
views
"Google Translate internal error" when using the GOOGLETRANSLATE function in Google Sheets
I have a large spreadsheet with a list of English phrases/words in one column and then another column where all of those are translated into another language using the GOOGLETRANSLATE function. One ...
1
vote
1
answer
14k
views
CakePHP shows 500 Internal Server Error
I'm having a problem with my CakePHP installation.
I was developing it in a subfolder and it was working fine. But, when I move it into the root folder, it's showing 500 Internal Server Error.
For ...
1
vote
1
answer
2k
views
How to see the actual server side error message in the browser?
I'm having a trouble reproducing an issue a user is having in IE, but something that always bugged me is how can I see the error message from classic ASP page in IE for example on a dev server.
In IE ...