internal-server-error Questions
6
Solved
I am posting a string to a web server this way:
private async Task makeRequest(string url, string postData)
{
HttpClient client = null;
HttpResponseMessage response = null;
try
{
client = ne...
Xenogenesis asked 7/9, 2013 at 13:38
23
Solved
I am replicating web application deployment and found several issues related to HTTP Error 500.19. My machine is running Windows 7 while the working development is using Windows 8. We're developing...
Synecious asked 30/5, 2013 at 12:39
7
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 POS...
Tangy asked 20/6, 2018 at 13:57
1
I have a springboot api. Call to one of the endpoint from swagger throws 500 error but nothing is getting logged. When I tried debugging, I can see that the responseEntity is populated just before ...
Trophoblast asked 27/5, 2020 at 0:9
4
Solved
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...
Eponym asked 31/7, 2012 at 21:9
13
Solved
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 Int...
Livvi asked 11/9, 2011 at 11:22
5
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 administrato...
Bowerbird asked 24/6, 2012 at 17:40
11
Heroku showing this message on the page:
"internal server error"
This error is showing in console:
GET https://frozen-gorge-82417.herokuapp.com/auth/github/callback?error=redirect_uri_mismatc...
Drubbing asked 3/9, 2017 at 8:8
3
I have an MVC4 web application deployed on a Windows 2012 R2 server with IIS 8.5.
I configured the Application Pool to run with a custom domain account because the web application needs to call ano...
Keeney asked 3/6, 2014 at 21:6
2
Solved
Playing around with Flask and just wanted to print out some data as JSON formatted, but I keep getting the error:
NameError: global name 'jsonify' is not defined
from flask import Flask
from ...
Lentigo asked 23/5, 2012 at 20:30
1
Solved
I am working on my rails RESTful API and I have set up a versioning feature on some of the endpoints. I have a class ApiVersion which Is responsible for determining which controllers to render base...
Brawny asked 4/5, 2021 at 19:44
10
I've installed website on my local machine using IIS 7 successfully.
But when I've deployed it on live server, I got the following error:
"The page cannot be displayed because an internal server...
Burned asked 9/6, 2015 at 11:45
3
Currently I'm deploying a Wagtail project. It seems everything working fine so far but there is one issue I can't get rid of. When I'm trying to access the Wagtail admin url I get an internal serve...
Mulvey asked 11/3, 2016 at 17:0
5
Solved
I'm hosting ASP.NET Core 2 site and getting below error message.
HTTP Error 500.21 - Internal Server Error
Handler "aspNetCore" has a bad module "AspNetCoreModule" in its module list
My applicat...
Pacific asked 14/7, 2018 at 8:41
3
Solved
I want to redirect by the role_ids of the user:
If it's equal to 2, redirect to workers_path.
if it's equal to 1, redirect to tasksadmins_path.
I defined the next things:
class ApplicationCont...
Vomiturition asked 3/2, 2013 at 8:7
0
I am trying to deploy my Django rest framework to aws eb but when I test the API, it shows
favicon.ico:1 GET
http://myapp.....com/favicon.ico
500 (Internal Server Error)
I update my url.py ...
Palmieri asked 7/1, 2020 at 7:24
8
Solved
I am trying to publish as ASP.NET Core project with a hosting provider that supports ASP.NET Core. I am getting 500 Internal Server Error which I believe is very common. So I searched through the i...
Calculation asked 7/1, 2017 at 21:44
3
I need help with HttpWebRequest in C#. Below lines of codes are working fine for local IIS but when I upload to remote server, it starts to giving me "The remote server returned an error: (500) Int...
Beverle asked 18/11, 2013 at 22:24
3
Solved
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." ...
Stairway asked 16/10, 2013 at 18:18
2
Solved
I'm trying to achieve long-polling in Java web application. The application is written using Spring MVC 3.2 and I make use of DeferredResult object (it represents Servlet 3.0 async response capabil...
Ezar asked 26/10, 2014 at 10:25
5
Solved
I receive 500 internal server error on my website. I think this is because of .htaccess file, but I don't know what's wrong with it.
Server: DirectAdmin, Linux-based
Contents of the .htaccess fil...
Shaneka asked 16/1, 2014 at 9:51
2
I can't seem to get the python module cgitb to output the stack trace in a browser. I have no problems in a shell environment. I'm running Centos 6 with python 2.6.
Here is an example simple code ...
Movement asked 3/10, 2013 at 2:56
1
Solved
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...
Declivitous asked 23/2, 2017 at 7:13
4
Solved
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
Serv...
Accad asked 22/10, 2012 at 8:56
6
I'm developing a tool for checking the integrity of links in a web page.
I've noticed that various Instagram URLs will return a HTTP 500 response in cases where if one were to visit the given URL ...
Barraza asked 15/10, 2013 at 8:42
1 Next >
© 2022 - 2024 — McMap. All rights reserved.