Hi,
I've just uploaded an asp.net web project to a Fasthosts shared server (yes, I know!). The site works fine on a different server, and builds successfully. However, when I upload it (or even just the files in the App_Code folder) to the fasthosts server, I just get a flat error 500 message.
I've ensured that the web.config file in...
When Django is up, it handles 500 errors. When Django is screwed,
mod_python will throw a bare bones "Internal Server Error." This is
described well in the docs at the following link:
http://docs.djangoproject.com/en/dev/howto/deployment/modpython/#error-handling
My question: Is there a way to override that "Internal Server Error"
page...
i have this url that i wanted to make friendly, using rewrite on .htacess but it gives me an error(500 internal server error), this is my orginal php url
http://www.example.com/viewtopic.php?topic=lovetopic
i want to change it to this:
http://www.example.com/lovetopic
this is my whole htaccess code is this:
RewriteEngine On
Rewrit...
So I'm struggling with this for a second day in a row and still nothing. Found few solutions on the internet but still I'm getting "Internal Server Error" when trying to send files with POST. The idea is as follows : I'm sending a file opened in python's shell to a django function on my server that will read and store the file there. I'v...
Hi,
I'm trying to make use of ajax control toolkit in a wss 3.0 application. It works well over http requests but over https it throws error code 500.
In a https request it manages to load everything, including the scriptresources related to the ajax functionality, but not the scriptresources which is specific to the ajax control tool...
Hi, I can't understand why this PHP script gives me 500 internal server error.
$query = "SELECT video_id,title FROM video_id";
$videos = mysql_query($query);
if($videos){
$videos = mysql_fetch_assoc($videos);
foreach($videos as $video){
echo '<div class="video">';
echo '<a href="video.php?v="'.$video['vid...
Hello,
I am processing a csv file to import each rows in a Database.
For each row, I've got to ask Google Maps API to get its latitude and longitude coordinates so I can take some milliseconds for each row.
To give some feedback to the user, I choose to add each row with an AJAX POST request to the server API in order to check the val...