cancel
Showing results for 
Search instead for 
Did you mean: 

Multiple active admins results in err_connection_timed_out

SOLVED

Multiple active admins results in err_connection_timed_out

This has been quite tricky for us. I've been investigating this for months yet it continues to occur intermittently.

 

Scenario

Two admins are active on the Magento backend. One admin begins experiencing err_connection_timed_out. The admin that most frequently experiences this is usually browsing customer or order data, however, when it occurs the frontend and backend throw the same error.

Our MySQL instance is using about 1/4 of the provisioned RAM and even less CPU %. I suspect that this could be a MySQL configuration issue, but am at a lost for what to check next.

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Multiple active admins results in err_connection_timed_out

Non-Magento issue. This was resovled by disabling TCP Reuse and TCP Recycle on my Linux server.

View solution in original post

2 REPLIES 2

Re: Multiple active admins results in err_connection_timed_out

Hi @tmillsmonin,

I think you should enable developer mode on your site to checking it. To enable developer mode, you can do steps as below:

Open the file index.php and add the code below:

 Mage::setIsDeveloperMode(true);
 ini_set('display_errors', 1);

 

Also, I think you should check table core_session. If you configure save session via database, you can try remove all data in table core_session to resolve the problem.

 

Hope this helpful!

 

 

www.advancedcheckout.com - www.stableaddon.com
One Step checkout extension - Social Login extension - Gift Card extension

Re: Multiple active admins results in err_connection_timed_out

Non-Magento issue. This was resovled by disabling TCP Reuse and TCP Recycle on my Linux server.