Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons

Reply
 
Thread Tools
Mass User Creation and Auto Posting Details »»
Mass User Creation and Auto Posting
Version: 2, by alexgeek alexgeek is offline
Developer Last Online: Sep 2008 Show Printable Version Email this Page

Category: Administrative and Maintenance Tools - Version: 3.6.8 Rating:
Released: 01-01-2008 Last Update: 01-02-2008 Installs: 69
DB Changes
Re-useable Code Additional Files Translations  
No support by the author.

What this is.
This script will allow you to create mass users with just a few customizations (or you can just use the defaults which are pretty good).
You may want to use this to make your forum seem more popular, for testing purposes or any other need.
The username, password and email of each user created will be outputted to your page once created. I recommend you save this for access to the accounts (unless you have the CYB login to user mod).
The username is created by taking a random base name out an array and appending it with numbers.
The password is completely random - alphanumeric.
The email is based on the username with a few more digits added and a random domain selected.

howto install
  1. Upload file to your forum root
  2. Open yourdomain.com/forum/(usergenerate.php / usergenv2.php)
  3. Follow instructions and customize the users to be created.
  4. Press submit.

You provide from the following when mass creating users:
  • Amount - Only input required. I recommend no more than 50 per time.
  • Usergroup - which usergroup all users will be put into.
  • Usertitle - the usertitle the users will have.
  • Password - If not set a random password will be generated else the same password will be used for all users created.
  • Email - If not set an email will be created based on the username else all users will have the same email address (Automatically allows this, no vbulletin option editing required).
  • Username generating - How to generate the usernames (default list, your own file or online list).
  • Auto posting - Whether or not to post a thread by each user, if selected you can choose whether the post and title come from the default list, your own file or online.
With this info you can either generate the users straightaway or preview the results in a table.
I will add more customizations if requested, but only to those that mark as installed!

I recommend you rename this file as anybody can access it at present.

There may be a few bugs, so please post any you find.

ToDo:
  • added!Add an option so that the users will automatically post an introduction.
  • added!Add more user names to array.
  • added! Add username and email checks so that no duplicate entry errors occur (Unlikely that they will though).
  • Add security (Everyone can access this script at the moment).
  • added! Style generated results with CSS.
  • added! Add javascript functions for ease of use.

You can help by posting arrays of generic usernames.
E.G.
PHP Code:
$user = array('spice''magicman''badger'); 
If you would like to add to the username array so that the usernames do not seem repetitive please post an array like above with at least 20 usernames in.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #72  
Old 01-14-2008, 06:36 PM
alexgeek alexgeek is offline
 
Join Date: Dec 2007
Location: UK
Posts: 128
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by TCE Killa View Post
Great mod, where do you upload the usernamelist.txt file though? I've made a list of usernames but don't where to upload that file to, thanks.
Same directory as the PHP file
Reply With Quote
  #73  
Old 01-14-2008, 06:37 PM
alexgeek alexgeek is offline
 
Join Date: Dec 2007
Location: UK
Posts: 128
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by stone0075 View Post
this is what i get when using (usergenv2.php)...

Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /home/**********/public_html/usergenv2.php on line 215
Please post lines 213 -> 217
Reply With Quote
  #74  
Old 01-15-2008, 05:53 AM
GamrChat GamrChat is offline
 
Join Date: Jan 2008
Posts: 2
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks for posting this hack... If I get really desperate in a few months then maybe I'll check it out
Reply With Quote
  #75  
Old 01-15-2008, 09:00 AM
johnrizz's Avatar
johnrizz johnrizz is offline
 
Join Date: Apr 2006
Posts: 333
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by alexgeek View Post
Please post lines 213 -> 217
213
Code:
#### CLASS ####
214 class autothread {
215 public $titles = array('Hello from [user]', 'Hi Im [user]', 'Sup!', 'Hi', 'Hey', 'Hello', 'Hia', 'Heelloooo', 'Just found this place', 'Hi everyone', 'Sup guys?', 'Greetings from [user]', 'Hi am [user]', 'Hey all!', 'I\'m here!', 'My intro..', 'I\'m new');
216 public $msgs   = array('Hi guys, I\'m [user] from Surrey. Love the forums so far!', 'Hey guys!', 'Hi, I found these forums googling about, looks cool here', 'Hey, my friend told me about these forums, looking cool so far. [user]', "Woooooh! These forums look cool. Hi! \n\n [user]", "Hi I'm from the USA, this place looks nice. Looking forward to posting! \n\n\n\n [user]", 'Hi! I thoguht I should introduce myself, I\'m [user]. Nice to meet you all!');
217 function set($userid, $defaults = 'defaults') {
Alex, here you go...
Reply With Quote
  #76  
Old 01-15-2008, 03:59 PM
alexgeek alexgeek is offline
 
Join Date: Dec 2007
Location: UK
Posts: 128
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

PHP4?
I did upload a version for PHP4, but all it requires you to do is replace "public" for "var" on 215 and 216. Should work!
Reply With Quote
  #77  
Old 01-15-2008, 06:46 PM
johnrizz's Avatar
johnrizz johnrizz is offline
 
Join Date: Apr 2006
Posts: 333
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok thanks alex
Reply With Quote
  #78  
Old 01-15-2008, 07:02 PM
johnrizz's Avatar
johnrizz johnrizz is offline
 
Join Date: Apr 2006
Posts: 333
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That worked like a charm.. haha!
Reply With Quote
  #79  
Old 01-15-2008, 08:15 PM
alexgeek alexgeek is offline
 
Join Date: Dec 2007
Location: UK
Posts: 128
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great
Reply With Quote
  #80  
Old 01-15-2008, 10:52 PM
Xandar Xandar is offline
 
Join Date: Dec 2007
Location: Austin, TX
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hey. Threw some additional intros together for you. (I think some might already be in your list since I compiled from your existing one).

[Place] should be replaced by a long list of places that your code can generate randomly from.

Another suggestion would be that when you're creating users, not everyone should post an intro.. so if you have 100 users created, you should let the person running the script say that only 20 or so post intros. That'll make it more reasonable as well.

Looking forward to the time management system before I run this on my forum again.

- X
Reply With Quote
  #81  
Old 01-16-2008, 04:47 PM
alexgeek alexgeek is offline
 
Join Date: Dec 2007
Location: UK
Posts: 128
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great suggestions and thanks for the list!
Will be a few days!
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 05:28 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04554 seconds
  • Memory Usage 2,313KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_code
  • (1)bbcode_php
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete