Skip to:
Content
Pages
Categories
Search
Top
Bottom

Looking for a bot for my own forum


  • attuoz
    Participant

    @attuoz

    Hello. I know its weird but i need to fake an active community forum for the Teamspeak Non Profit License application. I am looking for a bot to do it or a premade database with a lot of topics. Can you help me?

Viewing 8 replies - 1 through 8 (of 8 total)

  • Sam Rohn
    Participant

    @sam-rohn

    see this article for info on bbpress test data –

    3 Quick Ways to Create bbPress Test Data

    or just download and import this file –

    https://bbpress.trac.wordpress.org/ticket/2516

    sam


    cybarmitzvah
    Participant

    @cybarmitzvah

    Usually you have to do it all yourself. I know it is a lot of work, but think about it, if there were bots out there that could do it all for you, then woulden’t someone have already created the biggest forum in the world already and be making a ton of money?

    I’m not saying they don’t exist, I am just saying it wont be your best option.

    Best,
    CV


    attuoz
    Participant

    @attuoz

    hello, i found the thing i wanted. but i can’t get it work.

    Plugin: bbpFauxData

    https://github.com/MZAWeb/bbpFauxData

    I downloaded .php file. uploaded in a zip archive.

    “The package could not be installed. No valid plugins were found.

    Plugin install failed.”


    Sam Rohn
    Participant

    @sam-rohn

    see this article for info on creating bbpress test users and data

    3 Quick Ways to Create bbPress Test Data

    sam


    attuoz
    Participant

    @attuoz

    hello, thanks for the reply. i activated bbpFauxData. now i can’t find where to put the example code. it just says “Once you install and activate this plugin, you can do:”


    Robkk
    Moderator

    @robkk

    @attuoz

    since the bbpFauxData plugin doesnt work use the other ways listed in the article @sam-rohn posted.

    especially use the XML file that was in the trac ticket he linked here

    https://bbpress.trac.wordpress.org/ticket/2516

    i think you need to the wordpress importer plugin to use the data from the XML file.


    attuoz
    Participant

    @attuoz

    Hi. I tried other 2 methods. They add only a few topics, which is not enough. Can do the same in 10 minutes.

    bbpFauxData should work. I just don’t know where to use the php code.

    ini_set( 'max_execution_time', 30000 );
    ini_set( 'memory_limit', '1024M' );
    
    $bfd = new bbpFauxData();
    
    const USERS   = 50;
    const FORUMS  = 5;
    const TOPICS  = 100;
    const REPLIES = 1000;
    
    for ( $i = 0; $i < USERS; $i++ ) {
        $bfd->generate_user();
    }
    
    for ( $i = 0; $i < FORUMS; $i++ ) {
        $bfd->generate_forum();
    }
    
    for ( $i = 0; $i < TOPICS; $i++ ) {
        $bfd->generate_topic();
    }
    
    for ( $i = 0; $i < REPLIES; $i++ ) {
        $bfd->generate_reply();
    }

    Robkk
    Moderator

    @robkk

    @attuoz

    i think you can put that sample code in your functions.php in a child theme or functionality plugin.

Viewing 8 replies - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.
Skip to toolbar