Sanjeev Sabhlok's notes on technology, hardware, gardening

Category: Wordpress

Can’t log into wordpress

I had this experience and the following information helped fix it.

In my case I had to delete the plugin file entirely since it was causing problems.

 

Interpreting the Error Message:

If the error message states: Warning: Cannot modify header information - headers already sent by (output started at /path/blog/wp-config.php:34) in /path/blog/wp-login.php on line 42, then the problem is at line #34 of wp-config.php, not line #42 of wp-login.php. In this scenario, line #42 of wp-login.php is the victim. It is being affected by the excess whitespace at line #34 of wp-config.php.

If the error message states: Warning: Cannot modify header information - headers already sent by (output started at /path/wp-admin/admin-header.php:8) in /path/wp-admin/post.php on line 569, then the problem is at line #8 of admin-header.php, not line #569 of post.php. In this scenario, line #569 of post.php is the victim. It is being affected by the excess whitespace at line #8 of admin-header.php.

[Source]

Continue Reading

WordPress sidebar keeps going to the bottom

See these for help:

http://en.support.wordpress.com/themes/layout-issues/

http://en.forums.wordpress.com/topic/sidebar

http://en.forums.wordpress.com/topic/sidebar-widgets-appear-at-bottom

http://en.forums.wordpress.com/topic/sidebar-pushed-to-bottom-of-page-1

http://en.forums.wordpress.com/topic/why-is-my-sidebar-at-the-bottom-of-my-blog

http://georgecoghill.com/blog/1192/wordpress-sidebar-at-bottom-div-tags-via-copypaste-in-visual-editor/

 

In my case it changes with the screen size (using control + or -). 

Continue Reading

Favicons for Whitehouse theme

By simply putting a personal favicon.ico in the relevant directory (content/themes/whitehouse/core/images) only the top level page gets the favicon. To ensure the dashboard favicon chages as well, rename the favicon to favicon-pagelines.ico and over-write the existing one. That way you'll be able to distinguish the different blogs using the favicon on the tabs.

Continue Reading