Safi
Safi

Reputation: 1

err-connection-reset-error-on-wamp; I figured out WHY but I don't know HOW!

After installing phpED, I had to change some lines on php.ini but phpmyadmin was working just fine but yesterday It started showing "Error 101 (net::ERR_CONNECTION_RESET):" error message!

Well I can browse databases but simply can not browse tables by clicking on their name on navigation panel.

When I click on any table name, this a typical request, "http://localhost/phpmyadmin/index.php?db=databasename&token=cf4c8cd5d82_a_Token&table=table_name&pos=0"

After a bit messing around, I simply put this, "http://localhost/phpmyadmin/index.php?db=databasename&token=cf4c8cd5d82_a_Token&table=table_name" look I simply removed that pos parameter and its working fine!

But its annoying...so wondering if anyone knows what is it?

Here is a relevant stackoverflow question on this topic

Upvotes: 0

Views: 2800

Answers (2)

davidag90
davidag90

Reputation: 1

Pretty old question, but in case someone is going through this same situation, https://stackoverflow.com/users/268074/petah comment on original question actually made my case, since using that technique I discovered XDebug PEAR Extension was causing the problem.

It was just a matter of disabling it and my local site started working like a charm.

Upvotes: 0

Yohanip
Yohanip

Reputation: 63

I had the similar problem, and i resolve it by turning off the *mod_socket*

Upvotes: 1

Related Questions