April 5th, 2011 Category: WordPressA small hint which will help to improve page load time especially when using Firefox or Safari browser:
Maybe you’ve enabled the “flash slideshow” within the Slideshow options of NextGEN gallery. This will load the JW Image Rotator on every page. I’ve disable usage of the flash slideshow by unselecting the option:
[ ] Integrate the flash based slideshow for all flash supported devices
Without usage of the flash image rotator it is still possible to use slideshows. But the overall page load time increases. For me it looks like that loading the flash object causes the overall page display to be delayed. Google Chrome seems to handle loading of the flash object faster.
Anyway for me the fastest browser available seems to be Google Chrome. On my 13″ MacBook I recognize significant performance differences when using Safari, Firefox and Chrome. That’s the reason why I’m currently using Chrome (development version) as browser.
Written on April 5, 2011 | Posted in
WordPress February 1st, 2011 Category: WordPressHere is another quick but good tip to improve the performance of your WordPress admin area:
Delete all revision of every post. It can be achieved using a simple SQL statement:
DELETE a,b,c
FROM wp_posts a
LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)
LEFT JOIN wp_postmeta c ON (a.ID = c.post_id)
WHERE a.post_type = 'revision'
I do this from time to time. Optionally it’s possible either to disable revison managment or restrict the number of saved revisions by adding one of the following statements into your wp-config.php:
define('WP_POST_REVISIONS', false );
define('WP_POST_REVISIONS', 3);
The information has been taken from weblogtoolscollection.com.
Written on February 1, 2011 | Posted in
WordPress February 1st, 2011 Category: WordPressWordPress performance is a pain. It’s not secret. Here is a small tip to improve the WordPress admin dashboard a little bit. First of all I’ve disabled the WordPress Development Blog, Other WordPress News, Plugins and the Latest news from Yoast widgets. It can be done using the Screen Options button on the upper right side of the admin panel.
This is nice, but WordPress does still send a few HTTP requests to netdna.yoast.com. I think it makes no sense because we have disabled the Yoast widget:
To avoid this few unneeded request I’ve installed the Yoast Remove plugin. After installing and enabling the plugin the additional HTTP requests are gone and as a result we’ve improved the load time our admin dashboard a little bit:
Links
Written on February 1, 2011 | Posted in
WordPress