I'm using Wordpress MU
to host two wordpress sites. All of a sudden both the sites are down.
I remember adding a few plugins yesterday and I modified the page.php
of the responsiveness theme. I made a backup so now I changed page.php back to it' original.
All the other sites I am hosting work, I host a webail client and a web application and they are working fine so it's not a problem with hosting. I am hosting on my machine so when I go to localhost it still gives same 101 error.
Any ideas?
I'm getting the standard: Error 101 (net::ERR_CONNECTION_RESET): The connection was reset.
Update: I am using wordpress MU with domain mapping and I am hosting on my local machine so my IP address changes frequently. I have not changed it within Domain mapper.
I can't even access it locally using http://localhost
.
I restarted the webserver and made sure the DNS was pointing to my ip.
Restarting the web server (httpd) seems to have worked as I could not access http://localhost
Try accessing it from a different computer. Error 101 usually is a client side browser issue.
If Chrome: http://support.google.com/chrome/bin/answer.py?hl=en&answer=117804
I today experienced this problem today too and the system engineer was telling that it was an error in the code. But for some reason i couldn't believe it. So i started my investigation:
<?php phpinfo(); ?>
and looked up the memory_limit and post_size limits. Having these set to the default 32M/64M could lead to such problems. It was set much, much higher (512MB). So also this was not the cause.After a while of searching something popped up in my mind: when you can't find a logical reason for the cause, just restart the services and retry again. Probably a service is partially crashed and is not catched by some error mechanisme. It is just like Microsoft Windows which you have to reboot regulary when you are experiencing problems with hardware or newly installed software.
So i asked the engineer to restart the Apache / httpd daemon and what do you think? Everything worked fine again. Like nothing really happened at all.
Possible commands for restarting the HTTP daemon as root:
/etc/init.d/apache2 restart
/etc/init.d/httpd restart
/etc/init.d/apache restart
Or via:
service apache2 restart
service httpd restart
service apache restart
Hope this helps some folks!