The problem is basically that in 1.3.1+ there are outbound calls made to get some files for widgets in the backend. The process that got me to this conclusion was first setting these apache directives (under options tab in the website):
Code:
<IfModule mod_fcgid.c>
IPCConnectTimeout 300
IPCCommTimeout 360
</IfModule>
I was then finally able to move around the backend without any internal 500 error messages popping up, though it took 3-5min to get from page to page. I kept investigating further and came across the following thread:
http://www.magentocommerce.com/boards/viewthread/39726/
Basically, you have to disable the widget requests made by the server by doing the following:
Code:
Solution - disable widgets - quick and dirty way!
Edit function canShow:
/app/code/core/Mage/Adminhtml/Block/Notification/Window.php
public function canShow()
{
return false;
}
Hope this helps!
Recent comments
1 day 1 hour ago
1 day 1 hour ago
1 day 6 hours ago
1 day 13 hours ago
1 day 14 hours ago
1 day 15 hours ago
1 day 19 hours ago
2 days 2 hours ago
2 days 6 hours ago
2 days 8 hours ago