vote up 0 vote down star

I am calling a PHP-Script belonging to a MySQL/PHP web application using FF3. I run XAMPP on localhost. All I get is this:

Connection Interrupted The connection to the server was reset while the page was loading. The network link was interrupted while negotiating a connection. Please try again.

Any advice?

flag
Are you using a PHP framework? – davethegr8 Sep 23 '08 at 22:51

5 Answers

vote up 3 vote down

It sounds like the PHP script you're calling is failing without returning a valid response. Depending on the level of logging that you have set up, this should generate an error in the Apache logfile, which will give you some idea of the problem. I'm not familiar with XAMPP, but you should be able to find out where the logs are, and look for an error that occurred at the time you made your request to the PHP script.

link|flag
vote up 3 vote down

It's possible that your script could be caught in an infinite loop. If that doesn't apply, then I'd check the error logs like TimB suggested.

link|flag
+1 this was what cause this error for me :) – solomongaby Jun 18 at 10:16
vote up 1 vote down

copying libmysql.dll to apache\bin folder may help you overcome this strange error

link|flag
Thanks tata9999. I've been plagued with this problem for about a week now. Your suggestion did the trick. – Scott Nov 17 at 4:51
vote up 0 vote down

Try doing the request with Firebug enabled and see what info you can get out of that; I always find that using wget is helpful for seeing the raw HTTP interaction without worrying about Firefox's UI elements interfering.

link|flag
vote up 0 vote down

If you are using certificates for ssl in Windows 2008 Server(iis 7) from old selfssl tool(iis 6), that is the problem. Sometimes Microsoft releases patches which can destruct all these old certificates. The solution is to generate them again.

link|flag
It's not an IIS problem, since he said he's using XAMPP, where the A stands for Apache. – nickf Mar 16 at 23:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.