rbtux Wrote:can you provide the scripts or example code that crashes in your installation?
Hi!
I think I have located the problem - maybe it's a buffer overflow issue or something of the sort. In any case, after much headscratching I tried a workaround solution by putting the script on the server that worked and then use curl to fetch the output to my own server. Now, this still crashed! Which it shouldn't if it was a response/header problem with the remote server that I have no control over.
So - I did a little experiment - I took the output and saved it as a html file - then from my own server I ran this simple code:
Code:
$url = "http://www.zabersoft.com/trendy/test.html";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$html = curl_exec($ch);
curl_close ($ch);
And it crashes!
Try going to that URL - It's just plain old text. But for some reason this makes the server puke all over the place and return http 500
Any ideas what is going on???
Thanks!
Zaber