hi peeps, can someone tell me is there away ta fix the dashbooard, alot of the blocks are missin , like tools,page builder
dont kno how this happen
Thanks Doug
|
it's all there, just bellow admin menu click on settings |
but im missin the tools an page builder |
Then you must have deleted it.
Your screen shot only shows active items.
Look further down in the All Items section. Is it there? If so, then you can rebuild it. Drag a copy up along with all the items that go under it as followes.
Mass Mailer Banners IP Blacklist Database Backup Host Tools Antispam Tools Sitemap Cache
If it's not there, then you really messed things up somehow.
https://www.deanbassett.com |
sorry about that, heres all the blocks i have that in the admin menu, i tryed ta copy the adminastration folder ta the dolphin on the host but that didnt work |
Yea. Copying the folder won't restore that because those are all database items. Not sure what you did, but they are gone.
Run this query in phpMyAdmin to try and restore them.
-- Tools menu item INSERT INTO `sys_menu_admin`(`parent_id`, `name`, `title`, `url`, `description`, `icon`, `icon_large`, `check`, `order`) VALUES (0, 'tools', '_adm_mmi_tools', '', '', 'wrench col-green3', 'wrench', '', 4); SET @iParentId = LAST_INSERT_ID();
INSERT INTO `sys_menu_admin`(`parent_id`, `name`, `title`, `url`, `description`, `icon`, `icon_large`, `check`, `order`) VALUES (@iParentId, 'mass_mailer', '_adm_mmi_mass_mailer', '{siteAdminUrl}notifies.php', 'Using this function you are able to send a newsletter to your site members', 'envelope col-green3', '', '', 1), (@iParentId, 'banners', '_adm_mmi_banners', '{siteAdminUrl}banners.php', 'Provides you with the ability to manage banners on your web site', 'flag col-green3', '', '', 4), (@iParentId, 'ip_blacklist', '_adm_mmi_ip_blacklist', '{siteAdminUrl}ip_blacklist.php', 'IP Blacklist system', 'ban-circle col-green3', '', '', 6), (@iParentId, 'database_backup', '_adm_mmi_database_backup', '{siteAdminUrl}db.php', 'Make a backup of your site database with this utility', 'download-alt col-green3', '', '', 7), (@iParentId, 'host_tools', '_adm_mmi_host_tools', '{siteAdminUrl}host_tools.php', 'Admin Host Tools', 'hdd col-green3', '', '', 8), (@iParentId, 'antispam', '_adm_mmi_antispam', '{siteAdminUrl}antispam.php', 'Antispam Tools', 'legal col-green3', '', '', 9), (@iParentId, 'sitemap', '_adm_mmi_sitemap', '{siteAdminUrl}sitemap.php', 'Sitemap', 'sitemap col-green3', '', '', 10), (@iParentId, 'cache', '_adm_mmi_cache', '{siteAdminUrl}cache.php', 'Cache', 'bolt col-green3', '', '', 11); https://www.deanbassett.com |
And run this one to restore the builders.
-- Builders menu item INSERT INTO `sys_menu_admin`(`parent_id`, `name`, `title`, `url`, `description`, `icon`, `icon_large`, `check`, `order`) VALUES (0, 'builders', '_adm_mmi_builders', '', '', 'reorder col-red2', 'reorder', '', 5); SET @iParentId = LAST_INSERT_ID();
INSERT INTO `sys_menu_admin`(`parent_id`, `name`, `title`, `url`, `description`, `icon`, `icon_large`, `check`, `order`) VALUES (@iParentId, 'navigation_menu', '_adm_mmi_navigation_menu', '{siteAdminUrl}nav_menu_compose.php', 'For top menu items management', 'list col-red2', '', '', 1), (@iParentId, 'service_menu', '_adm_mmi_service_menu', '{siteAdminUrl}service_menu_compose.php', 'For top service''s menu items management', 'list col-red2', '', '', 2), (@iParentId, 'bottom_menu', '_adm_mmi_bottom_menu', '{siteAdminUrl}bottom_menu_compose.php', 'For top bottom''s menu items management', 'list col-red2', '', '', 3), (@iParentId, 'member_menu', '_adm_mmi_member_menu', '{siteAdminUrl}member_menu_compose.php', 'For top member''s menu items management', 'list col-red2', '', '', 4), (@iParentId, 'admin_menu', '_adm_mmi_admin_menu', '{siteAdminUrl}menu_compose_admin.php', 'For top admin''s menu items management', 'list col-red2', '', '', 5), (@iParentId, 'profile_fields', '_adm_mmi_profile_fields', '{siteAdminUrl}fields.php', 'For member profile fields management', 'list-alt col-red2', '', '', 10), (@iParentId, 'pages_blocks', '_adm_mmi_pages_blocks', '{siteAdminUrl}pageBuilder.php', 'Compose blocks for the site pages here', 'th-large col-red2', '', '', 20), (@iParentId, 'mobile_pages', '_adm_mmi_mobile_pages', '{siteAdminUrl}mobileBuilder.php', 'Mobile pages builder', 'th col-red2', '', '', 21), (@iParentId, 'predefined_values', '_adm_mmi_predefined_values', '{siteAdminUrl}preValues.php', '', 'list-ol col-red2', '', '', 30);
https://www.deanbassett.com |
Thank you guys fer the help it worked, the blocks are back |
ok, got 1 more problem, a user tryed ta upload a vid ta my forum an his internet crashed as it was uploading, now i have a topic on the forum that wont delete, an get this error when i try ta open the topic>> Access denied. You must have special permissions to access this area or you are not logged in.<<
Doug
|