WordPress logout error
Saturday, July 2nd, 2011The connection to the server was reset while the page was loading
You have most likely arrived here suffering from the WordPress affliction - ‘The Connection Was Reset - The connection to the server was reset while the page was loading.’ The main thing here is the connection has been reset.
fatcow hosting customers jump over here.
Modify php.ini for the folder/or site.
- Set the max script execution time to 90 seconds. ( It was 300 ).
- Set the php memory limit to 128m. ( It was 32m )
- Verified that the session.save_path was accurate. This may involve some interaction with your hosting provider.
- Enabled (true) zlib.output_compression
The fatcow.com hosted process
- Log into your FatCow control panel and click “Scripting and Add-Ons” from the main menu.
- Click “CGI and Scripted Language Support”.
- Click “PHP Scripting”.
- Near the bottom of the page you will see an area highlighted in orange saying “Edit your php.ini file for PHP”
- Copy the entire text from the PHP.ini file into a blank text file so I had a handy backup.
- Paste that same text into Notepad++ which is a handy free code editor
- Change line 244 to: max_execution_time = 90
- Change line 246 to: memory_limit = 128M
- Verify that line 881 was in the format: session.save_path = /home/users/web/YOURBOX/moo.YOURSITE/cgi-bin/tmp
- Finally, change line 126 to: zlib.output_compression = On
Thanks to squishy79 who did the leg work only to have the resource squirrelled away.
Popularity: 55%