Just a tip on how to move close, maximize and minimize icons to top right of a window in Ubuntu 11.10.
A tip on saving doc or docx files in LibreOffice
What i did i created a new .doc file through “Create New Document” that generally appears listed on pop up menu when one right clicks inside a folder area in Ubuntu. The file was created ok. Then i opened it…
A WordPress plugin to delete duplicate users by ID, user_login or user_email etc.
Description: This plugin provides a way to delete duplicate users by ID, user_login or user_email. An user-base cleaning script! In a case, thousands of users are entered by tempring with the basic wp_user table structure.. where ID was converted to…
How to delete duplicate MySQL records with duplicate field value (as ID)
For some reason i had duplicate entries in my WP database. The ID field in wp_users table was tempered with and was changed to Non Auto-Increment to insert records on the will. I deleted all ID=null records manually and then…
Fix to Windows 7 Error “No such interface supported”
Yesterday i tried to install Internet Explorer 7 standalone version which eventually failed and didn’t work at all. Additionally it caused my Windows 7 Ultimate to produce “No such interface supported” and similar nasty errors when i clicked on main…
How to edit or download .htaccess from cpanel file manager where it is hidden
In my cpanel (dont know the version number) it didn’t show .htaccess file and hid it by default. If it happens and as a lazy person like me you dont want to do ftp like things to get the htaccess…
Keyword shortcuts to switching working files or buffers in jEdit
Hint: By buffers in jEdit it means working files (area), which is shown in the image below:
Briefly unavailable for scheduled maintenance. Check back in a minute
“Briefly unavailable for scheduled maintenance. Check back in a minute” If this message appears on you wordpress website for more than you anticipated if might mean that your wordpress update failed due to some reason. You can get rid of…
Changing HEADER_IMAGE_WIDTH and HEADER_IMAGE_HEIGHT in worpress 3.3 header
I see <img src=”<?php header_image(); ?>” width=”<?php echo HEADER_IMAGE_WIDTH; ?>” height=”<?php echo HEADER_IMAGE_HEIGHT; ?>” alt=”” /> in my themename/header.php file. How do i changed HEADER_IMAGE_WIDTH and/or HEADER_IMAGE_HEIGHT??
How to remove html { margin-top: 28px !important; } from wordpress header
To remove html { margin-top: 28px !important; } from wordpress header go to /wp-includes/admin-bar.php and edit around line 672 (in WordPress 3.3) Alternatly you can add a remove_action filter in you active theme/functions.php file like this, as this is a…