Author Topic: Modules and Tools Missing!  (Read 3901 times)

Arthur Mullard

  • Jr. Member
  • **
  • Posts: 73
    • View Profile
Modules and Tools Missing!
« on: May 22, 2009, 01:27:32 pm »
Am running 1.4 but Modules has disappeared from the Admin/Configuration section, and nothing under Admin/Tools at all! So:

Admin: Configuration

General
Mailing
[no modules]
Passwords

Admin: Tools

There are no registered administration tools in the database
[no Test Mailer Settings]
[no Mass Mailer]

Any ideas?

alvarotm01

  • Administrator
  • Sr. Member
  • *****
  • Posts: 335
    • View Profile
    • Email
Re: Modules and Tools Missing!
« Reply #1 on: May 22, 2009, 03:35:26 pm »
Look at table 'og_config_categories', and look for the registry with column 'name' = 'modules', it must have the property 'is_system' = 0.
if it isn't there run this in your database
Code: [Select]
INSERT INTO `og_config_categories` (`name`, `is_system`, `category_order`) VALUES ('modules', 0, 3) ON DUPLICATE KEY UPDATE id=id;

Same thing at table 'og_administration_tools'. There should be only two registries, named 'test_mail_settings' and 'mass_mailer'
if they are not there, run this
Code: [Select]
INSERT INTO `og_administration_tools` (`name`, `controller`, `action`, `order`) VALUES
('test_mail_settings', 'administration', 'tool_test_email', 1),
('mass_mailer', 'administration', 'tool_mass_mailer', 2);

hope this helps

Arthur Mullard

  • Jr. Member
  • **
  • Posts: 73
    • View Profile
Re: Modules and Tools Missing!
« Reply #2 on: May 22, 2009, 04:04:59 pm »
That worked a treat, thank you for such prompt and useful help.