MyBB Community Forums

Full Version: Help Mydevel Generate
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, this plugin is fine, though I cannot access its settings directly. I just have to type in the url bar http://www.mysite.com/admin/index.php?mo...l_generate to go to its settings. And its settings are fine. Its just I can't see its link or menu from the CONFIGURATIONS. I saw the screenshot of the author and its on the left side menu along with other configuration menu like THREAD PREFIX, SETTINGS, WARNING, BANNING, MYCODE, PLUGINS and etc.

How can I make a menu link along with that other menus stated above? So I can just click on that menu link? Im not good in php and inserting templates in ACP :p help

BTW here's the link of the plugin http://mods.mybb.com/view/mydevel-generate
The plugin needs updating for mybb 1.6.5. There is a plugin by pavemen that might do it for you


http://community.mybb.com/thread-108595.html
Thanks for posting that topic bro. But I'm afraid to run it in my forum. I afraid it affects my forum and lots of changes will be made after. Is there any alternative way or edit the hooks of that plugin to show its menu link in config? I think the problem is just on adding script to show its menu link. I just analyzed it. Hehe
Please do not call me bro.

Look in the original topic editing plugins for 1.6.5

http://community.mybb.com/thread-106729.html
Problem solved. Thankz man, I just add symbol &

In (&$sub_menu)
function mydevel_generate_admin_config_menu(&$sub_menu)
{
   global $mybb;
   if((int)$mybb->user['uid'] == 1)
   {
      $sub_menu['300'] = array("id" => "mydevel_generate", "title" => "Devel: Generate", "link" => "index.php?module=config-mydevel_generate");
   }
}
I am not getting option to generate users

Where can I find the file to edit