The menu won't show up on the newly released 6.9. Is this a bug with administration menu being 6.9 compatible? If so, will there be a compatible release, released soon? The space is there -- but the menu itself doesn't show up.

CommentFileSizeAuthor
#8 fix_for_theme_developer.patch945 bytesnitrospectide

Comments

jesusrocksmyfaceoff’s picture

Nevermind, it was an issue from upgrading from 6.8 to 6.9. I have not yet had a successful upgrade process with drupal... ugh.

jesusrocksmyfaceoff’s picture

Status: Active » Closed (fixed)
jesusrocksmyfaceoff’s picture

Status: Closed (fixed) » Postponed (maintainer needs more info)

I thought i would update again: its a compatibility issue with devel module. devel itself can stay enabled, but, as soon as any other part of devel is enabled, the admin menu disappears. Also, this is ONLY with 6.9. I didn't have a problem in 6.8

whatleyd’s picture

Title: drupal 6.9 issue? » drupal 6.9 issue? Broken URLS

Good Day,

I am totally at whits end. I am also new to Drupal. And this week has truly been a learning experience. Now I had to copy a development Drupal from a production website.

I upgraded from Drupal 6.7 to 6.9.
I backup and restored the mySQL 5.1.3 database.
I am using PHP 5.x.
I am using IIS 5+

I am experiencing the exact same symptoms. The menu won't show up on the newly released 6.9. No content can be accessed from menus or links (404 instead), unless "?q=" is manually inserted into URL. Clean URL reports that Clean URLs are enabled. In addition, none of my images are showing up and my javascript is not working. All of this was working on the production server and before the upgrade.

I have looked at the .htaccess file and I have read that the file has not changed.
I even went to the systems table and set the status to 0 and back to 1 for the modules.

At this point, I have no idea what else to do. Can you help me.

Thanks.
Deetra

true-pal’s picture

@ #4: same here

sun’s picture

I cannot replicate this issue - do you have the Devel Themer module enabled? Do you still experience this issue after disabling Devel Themer? If you are, did you clear your site's cache?

nitrospectide’s picture

Version: 6.x-1.1 » 6.x-1.3
nitrospectide’s picture

Status: Postponed (maintainer needs more info) » Needs review
StatusFileSize
new945 bytes

When the Theme Developer module is enabled, the flyout menus cease working. Based on interaction with tha_sun on IRC, I implemented his recommended fix, which seems to work nicely.

Two changes were introduced where:

$output .= theme('admin_menu_item', $link, $data['link']['has_children'], admin_menu_tree_output($data['below']), $data['link']['in_active_trail'], $extra_class);

was converted to

$output .= theme_admin_menu_item($link, $data['link']['has_children'], admin_menu_tree_output($data['below']), $data['link']['in_active_trail'], $extra_class);

and

$output .= theme('admin_menu_item', $link, $data['link']['has_children'], '', $data['link']['in_active_trail'], $extra_class);

was converted to

$output .= theme_admin_menu_item($link, $data['link']['has_children'], '', $data['link']['in_active_trail'], $extra_class);

sun’s picture

Title: drupal 6.9 issue? Broken URLS » Devel Themer breaks admin menu

Better title.

sun’s picture

Status: Needs review » Fixed

Committed this patch and also removed the corresponding hunk from admin_menu_theme().

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.