tags:

views:

15377

answers:

8

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?

+3  A: 

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.

TimB
A: 

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.

dirtside
A: 

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.

It's not an IIS problem, since he said he's using XAMPP, where the A stands for Apache.
nickf
+3  A: 

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.

VirtuosiMedia
+1 this was what cause this error for me :)
solomongaby
+1  A: 

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

tata9999
Thanks tata9999. I've been plagued with this problem for about a week now. Your suggestion did the trick.
Scott
+1  A: 

I solved this problem Upgrading the xampp\php\ext\xdebug\php_xdebug.dll (changed to php xdebug v.2.0.5-5.3-vc9 )

Raul
A: 

tata9999 response was dead on. thanks much!