View Single Post
Old 08-05-2005, 03:07 PM   #15 (permalink)
4fingers
The Wanderer
 
Join Date: Jul 2005
Posts: 17
Thanks: 0
4fingers is on a distinguished road
Default

What you can try and do is upload a php page with the following code in it:
PHP Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Test page for 500 HTTP error</title>
</head>

<body>

<form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>" >
  Message<br />
  <textarea name="message" ></textarea><br />
  <input type="submit" name="submit"/>
</form>

<?php
if(isset($_POST['submit'])) {
    
$message $_POST['message'] ;
    echo 
"Message 1: " $message "<br>";
}
?>
</body>
</html>
Then see if you get the Internal 500 error with this simple script and if you do you then you have a good chance that your host will listen to you as that script does work and I am sure other people can verify that.

If they come back saying sorry please pay for script support when obvously the script is not the cause of the problem then I don't see why you have to pay for their mistakes. I would then advise you to change hosts.
4fingers is offline  
Reply With Quote