XenForo
Administrative
- Thread starter
- Admin
- #1
Hi there
Maybe someone will need it.
An external script to automatically bulk add a certain number of users.
PHP:
Read more
ادامه مطلب...
Maybe someone will need it.
An external script to automatically bulk add a certain number of users.
PHP:
Code:
<?php
$dir = __DIR__;
require($dir . '/src/XF.php');
XF::start($dir);
$name_exis=array();
$i=0;
while ($i<500){ // new users count...
Read more
ادامه مطلب...