Site in read-only mode

This site is now read-only following the release of MyBB 1.8 and the new mods site.

If you are looking for MyBB 1.8 mods please click here to visit the new mods site.

You can continue to download submissions for MyBB 1.6 and earlier here, however new submissions will only be accepted via the new mods site.

Write Review

Reviews

MyDevel: Generate - 1.1 by Aries-Belgium

Downloaded and generated users on my 1.6 test forum - worked perfectly. One SMALL thing - in the ACP when selecting number of users to add it says number of threads instead of number of users. That could be confusing.

Added in April 2012.

in mybb i.6.7 the admin menu is not generated; however, the functionality is still there, you need to activate the plugin and then in the address bar add

Code:
admin/index.php?module=config-mydevel_generate&action=posts


where admin is the name of your acp directory.

Written By: Leefish, 9th January 2011

thanks works fine with 1.6.2.

Written By: airborne, 23rd March 2011

Excellent tool for plugins developers.
Thank you very much!

Written By: lukasamd, 9th August 2011

seems to outdated now... wont work with new 1.6.5

Written By: atraeus, 9th February 2012

I was testing this.
Works great with thread creation.
Works great with post creation
But FAILED with users creation.

Written By: bestblackhatforum.com, 19th May 2012

Fails user creation

Written By: julian, 14th April 2013

If you're using 1.6.5 or above, you may have noticed that after installation of this plugin it doesn't show on left menu in Configurations page, here is how to show the link;

Open plugin file and find;

PHP Code:
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");
    }

and Change it into;

PHP Code:
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");
    }
    return 
$sub_menu;

Written By: Yaldaram, 8th July 2013

Write Review