Thought I'd share this for others who are upgrading from Drupal 7 to Backdrop.
Sometimes after upgrading the admin menu could have menu items in the wrong place. Usually this is because the menu was probably messed up on your Drupal 7 site. If you're okay with losing the custom menu items in the "management" menu, this is what you need to do to reset it. (Following this thread https://drupal.stackexchange.com/questions/48515/how-to-completely-wipe-and-rebuild-drupal-menus).
I'm going to take the easiest approach for most people. (More experts may want to do this via the CLI).
- Backup your database!
- Download devel module and install. https://backdropcms.org/project/devel
- Go to Development > Execute PHP (/admin/devel/php).
- Then execute the following:
db_query("DELETE FROM {menu_links} WHERE module = 'system'");
db_query("DELETE FROM {menu_links} WHERE menu_name = 'management'");
menu_rebuild();
The admin menu should now be reset and look more normal.
Recent comments
It is possible to remove that line manually from the SQL file and it should then import to MySQL fine.
Problem with utf8mb4 Format when importing database
I think people have used bee in MAMP. I've posted in our chat channel to see if anyone can jump in here and help: #Backdrop > Bee @ 💬
Problem with utf8mb4 Format when importing database
Hi Thanks for the quick answer. Looks interesting and hope I can verify that this solves the issue. Not yet sure how I can use the bee tool in my MAMP environment. Cheers, Rolf
Problem with utf8mb4 Format when importing database
I believe the issue relates to a compatibility issue with MariaDB exports: https://mariadb.org/mariadb-dump-file-compatibility-change/ I don't know if Backup and Migrate addresses...
Problem with utf8mb4 Format when importing database
This may be overkill, but the module print contains an option to email the page as well, I believe. I'm not sure if its working in its Backdrop's version. https://github.com/backdrop-...
Forward/email this page ?