[wp-trac] [WordPress Trac] #19995: Slow down of access to Multi-Site Admin area when Upgrading to 3.3.1
WordPress Trac
wp-trac at lists.automattic.com
Wed Feb 8 23:54:50 UTC 2012
#19995: Slow down of access to Multi-Site Admin area when Upgrading to 3.3.1
---------------------------+------------------------------
Reporter: bastosmichael | Owner:
Type: defect (bug) | Status: new
Priority: normal | Milestone: Awaiting Review
Component: Multisite | Version: 3.3.1
Severity: normal | Resolution:
Keywords: |
---------------------------+------------------------------
Comment (by weschyrchel):
Nacin, Michael was posting for me.
The url is http://www.controltec.biz. Even going to
http://www.controltec.biz/wp-admin , you can experience the slowness.
Since the update to Wordpress 3.3.1 the web site administrative backend
takes up to 2 minute to move between pages. The frontend is fine. The
issue is a common issue now with the multi-site feature. The issue is not
RAM, CPU or anything with the server. I have optimized memory for
Wordpress and PHP. I have disabled all plugins, etc. Nothing...
We also ran the WP Optimize plugin. No improvement.
In addition we implemented the following suggestion.
If the issue is your queries are taking too long then in your wp-
config.php file, add this line of code to the top:
define('SAVEQUERIES', true);
Then, in the theme's footer.php file, you can do this to dump all the
queries and how long they took:
if (SAVEQUERIES) {
global $wpdb;
echo '<!--\n';
print_r($wpdb->queries);
echo '\n--!>';
}
Then looking at the source of the page will show all the queries and a
number showing how long they took.
After you do this, turn the SAVEQUERIES back off by setting it to false in
the wp-config.php file. You don't want it to spit out the queries all the
time.
If it's a wp-cron problem (possible), then you can possibly manually clear
it up quickly by doing the following:
Remove or comment out this line from wp-cron.php:
if ( $_GET['check'] != wp_hash('187425') )
exit;
Try these first but there may be other things you can try if that doesn't
work.
ALSO, the latest we are trying is this, http://wpengineer.com/1176
/analyze-wordpress-performance-plugin/
If you have any suggestions, we would appreciate the help. Thank you!
--
Ticket URL: <http://core.trac.wordpress.org/ticket/19995#comment:4>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software
More information about the wp-trac
mailing list