May 5th, 2011 Category: WordPressThis seems to be a interesting way for backing up your WordPress site: WordPress Backup to Dropbox. For a few details check the tutorial “How to Automatically Backup Your WordPress Site to Dropbox“. I’ve not checked it by myself, but it looks usable.
Never forget to backup!
Written on May 5, 2011 | Posted in
WordPress 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 March 31st, 2011 Category: WordPressIt seems that a few others also have the problem that pingbacks of a WordPress installation are not working.
In my case it was caused by Googles mod_pagespeed plugin for Apache. I thought this is a nice plugin, but it seems it causes to much problems with WordPress (second time here for me). So I decided to no longer use this plugin.
Useful link:
Written on March 31, 2011 | Posted in
WordPress March 30th, 2011 Category: WordPressYou may also think that loggin in every time you want to access the admin area of one of your WordPress blogs is quite annoying. But there is a quick way to enable the auto-login for WordPress. It’s shown below.
Add the following lines of code to the functions.php in theme directory:
function auto_login() {
if (!is_user_logged_in()) {
//determine WordPress user account to impersonate
$user_login = 'guest';
//get user's ID
$user = get_userdatabylogin($user_login);
$user_id = $user->ID;
//login
wp_set_current_user($user_id, $user_login);
wp_set_auth_cookie($user_id);
do_action('wp_login', $user_login);
}
}
add_action('init', 'auto_login');Source: lbsharp.com
Written on March 30, 2011 | Posted in
WordPress March 30th, 2011 Category: WordPressWordPress 3.1 comes with a new feature called “admin bar”. The admin bar is displayed whenever you are logged in as admin on regular pages on your blog. I don’t like the bar because it doesn’t make so much sense for me and I think it slows down page display.
Furtunatly there is an eays way to disable the admin bar. The only thing you have to do is to add one line of code into the functions.php of your theme:
add_filter( 'show_admin_bar', '__return_false' );
And the admin bar disappears, very nice.
Source: German WordPress Blog
Written on March 30, 2011 | Posted in
WordPress