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
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
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.”
see this article for info on creating bbpress test users and data
3 Quick Ways to Create bbPress Test Data
sam
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:”
@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.
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();
}
@attuoz
i think you can put that sample code in your functions.php in a child theme or functionality plugin.