WordPress 3.2 conflicts with WP-Insert

Right after updating to wordpress 3.2 I was shocked.

Wordpress 3.2 does not have an admin menu. The dashboard is gone.

Everything I was able to see wast he admin bar that is visible from the frontend.

Hoping that that WordPress just can not exist without a good admin menu, hoping that they would never replace the awesome admin menu theyhad, with nothing, I started my investigation.

So.. How to fix the wordpress 3.2  missing dashboard problem?

Thanks to my Pila electrica I found that wordpress adminmenu  css class was overwritten by a class with the same name, owned by wp-insert.

At least this is what happens in Firefox 5.0

An update of wp-insert plugin does  solve this problem. Use  1.7.4

This is how I fixed it before the update of wp-insert was available:

I started looking for a div with the name containing “admin”, a div that should be loaded first in the html.

I found adminmenu and I saw that it was out of the screen. Firebug shows that adminmenu was also described in .css file of wp-insert.

If you find the some problem there are two choices:

a) deactivate wp-insert  and search for an other similar plugin

b)  modify wp-insert like this:

1 Go to /plugins/wp-insert/css/adminStyle.css

2 Replace the name of  ‘adminmenu’ css class  with ‘wpinsertadminmenu’

3 It would be expected to replace something else in wp-insert, for example, replace ‘adminmenu’ with the new one in every file where it is used. There is no need to do that. It works as it is.

If you notice any other similar problem, the fix should be as simple as the one above:

1) uninstall plugins one by one and see what is the one that causes the problem

2) search for “adminmenu” in all css files of the buggy plugin and replace it with something else.

3) report the bug to the author of the plugin.

Fix for WordPress 3.1 broken permalinks

After the update to  WordPress 3.1 many complain about the permalinks not working anymore. Pages and category links are broken.

There is a quick fix that solves the problem and make all pages, post  and categories work again.

The problem is into one of the plugins that are installed.

Until now, 2 plugins have been reported as containing bad code. “Simple Tags” and “Multipage Toolkit“.

In order to fix your WordPress, edit the plugins mentioned above and replace the line:

$wp_rewrite->flush_rules();

with

/* $wp_rewrite->flush_rules(); */

After that, rebuild your permalinks structure: go to Permalinks page and press “Save Changes“. Some recommend to  do it twice.

Whenever you install another plugin search for flush_rules() into its code. It is not recommended to use it. Any other plugin containing this line of code $wp_rewrite->flush_rules(); has big chaces to break the permalink structure.

http://codex.wordpress.org/Function_Reference/WP_Rewrite

Middle C notes – frequencies

(“Middle C” is C4 )

Note      Frequency(Hz)
C0          16.35
C#0/Db0        17.32
D0          18.35
D#0/Eb0        19.45
E0          20.6
F0          21.83
F#0/Gb0        23.12
G0          24.5
G#0/Ab0        25.96
A0          27.5
A#0/Bb0        29.14 Read the rest of this entry »