<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>How to create 30k blank user on the phorum?</title>
        <description> Good Day.
 I need to create around 30k blank users on my fresh phorum installation. What I mean by that is - I need a record of that 30k in my database(mysql) and on my phorum script. Every user would appear in my admin panel, so I could manipulate the details. The easiest approach would be to create those 30k by hand, unfortunately it is unreal due to time factor. This is not a thread about spamming and bots. Hence:
 I have an access to the phpmyadmin, ftp, and of course via the admin panel on the phorum.
 Is it possible? Is there a module around for that purpose I am not aware of. 
 Every nudge is deeply appreciated.
Janie</description>
        <link>http://www.phorum.org/phorum5/read.php?61,150895,150895#msg-150895</link>
        <lastBuildDate>Sun, 19 May 2013 08:49:39 -0500</lastBuildDate>
        <generator>Phorum 5.2.19</generator>
        <item>
            <guid>http://www.phorum.org/phorum5/read.php?61,150895,150931#msg-150931</guid>
            <title>Re: How to create 30k blank user on the phorum?</title>
            <link>http://www.phorum.org/phorum5/read.php?61,150895,150931#msg-150931</link>
            <description><![CDATA[ I use this mysql script to add user from extern database<br />
<blockquote class="bbcode"><div><small>Quote<br/></small><strong></strong><br/>&quot;INSERT `&quot;.PHORUM_USERS.&quot;` ( `username` ,`password` ,`sessid_lt`,`active`,`email`,`real_name`,`display_name`,`date_added`) VALUES ('$username','&quot;.md5($passwd).&quot;','&quot;.md5(microtime()).&quot;','1','$email','$real_name','$display_name','&quot;.time().&quot;')&quot;</div></blockquote>it works so fine, you just verify if the username you want to insert are all different.<br />
After each insert, send a mail with username / password to each user, so they can connect immediatly]]></description>
            <dc:creator>Leonick</dc:creator>
            <category>5.2 Phorum Support</category>
            <pubDate>Mon, 06 Feb 2012 16:42:58 -0600</pubDate>
        </item>
        <item>
            <guid>http://www.phorum.org/phorum5/read.php?61,150895,150911#msg-150911</guid>
            <title>Re: How to create 30k blank user on the phorum?</title>
            <link>http://www.phorum.org/phorum5/read.php?61,150895,150911#msg-150911</link>
            <description><![CDATA[ You might be able to get assistance from support to run the script. there are only four questions to answer.<br />
Other solution; do a local install. If it needs to be on the web for testing, dump the data and upload it to the web<br />
<br />
<br />
<pre class="php bbcode_geshi"><div class="head">Language: PHP</div><span class="kw1">print</span> <span class="st0">&quot;<span class="es1">\n</span>How many users do you want to create?<span class="es1">\n</span>&quot;</span><span class="sy0">;</span>
<span class="kw1">print</span> <span class="st0">&quot;&gt; &quot;</span><span class="sy0">;</span> <span class="re0">$ucount</span> <span class="sy0">=</span> <span class="br0">&#40;</span>int<span class="br0">&#41;</span><a href="http://www.php.net/trim"><span class="kw3">trim</span></a><span class="br0">&#40;</span><a href="http://www.php.net/fgets"><span class="kw3">fgets</span></a><span class="br0">&#40;</span>STDIN<span class="br0">&#41;</span><span class="br0">&#41;</span><span class="sy0">;</span>
&nbsp;
<span class="kw1">print</span> <span class="st0">&quot;<span class="es1">\n</span>How many threads do you want to create?<span class="es1">\n</span>&quot;</span><span class="sy0">;</span>
<span class="kw1">print</span> <span class="st0">&quot;&gt; &quot;</span><span class="sy0">;</span> <span class="re0">$tcount</span> <span class="sy0">=</span> <span class="br0">&#40;</span>int<span class="br0">&#41;</span><a href="http://www.php.net/trim"><span class="kw3">trim</span></a><span class="br0">&#40;</span><a href="http://www.php.net/fgets"><span class="kw3">fgets</span></a><span class="br0">&#40;</span>STDIN<span class="br0">&#41;</span><span class="br0">&#41;</span><span class="sy0">;</span>
&nbsp;
<span class="kw1">print</span> <span class="st0">&quot;<span class="es1">\n</span>How many messages do you want to create per thread?<span class="es1">\n</span>&quot;</span><span class="sy0">;</span>
<span class="kw1">print</span> <span class="st0">&quot;&gt; &quot;</span><span class="sy0">;</span> <span class="re0">$mcount</span> <span class="sy0">=</span> <span class="br0">&#40;</span>int<span class="br0">&#41;</span><a href="http://www.php.net/trim"><span class="kw3">trim</span></a><span class="br0">&#40;</span><a href="http://www.php.net/fgets"><span class="kw3">fgets</span></a><span class="br0">&#40;</span>STDIN<span class="br0">&#41;</span><span class="br0">&#41;</span><span class="sy0">;</span>
&nbsp;
<span class="kw1">print</span> <span class="st0">&quot;<span class="es1">\n</span>How many newflags do you want to set per user?<span class="es1">\n</span>&quot;</span><span class="sy0">;</span>
<span class="kw1">print</span> <span class="st0">&quot;&gt; &quot;</span><span class="sy0">;</span> <span class="re0">$ncount</span> <span class="sy0">=</span> <span class="br0">&#40;</span>int<span class="br0">&#41;</span><a href="http://www.php.net/trim"><span class="kw3">trim</span></a><span class="br0">&#40;</span><a href="http://www.php.net/fgets"><span class="kw3">fgets</span></a><span class="br0">&#40;</span>STDIN<span class="br0">&#41;</span><span class="br0">&#41;</span><span class="sy0">;</span>
&nbsp;
<span class="kw1">print</span> <span class="st0">&quot;<span class="es1">\n</span>&quot;</span></pre>]]></description>
            <dc:creator>Scott Finegan</dc:creator>
            <category>5.2 Phorum Support</category>
            <pubDate>Thu, 02 Feb 2012 01:48:38 -0600</pubDate>
        </item>
        <item>
            <guid>http://www.phorum.org/phorum5/read.php?61,150895,150905#msg-150905</guid>
            <title>Re: How to create 30k blank user on the phorum?</title>
            <link>http://www.phorum.org/phorum5/read.php?61,150895,150905#msg-150905</link>
            <description><![CDATA[ Roger that.<br />
Thank you.]]></description>
            <dc:creator>Janie</dc:creator>
            <category>5.2 Phorum Support</category>
            <pubDate>Wed, 01 Feb 2012 15:16:30 -0600</pubDate>
        </item>
        <item>
            <guid>http://www.phorum.org/phorum5/read.php?61,150895,150900#msg-150900</guid>
            <title>Re: How to create 30k blank user on the phorum?</title>
            <link>http://www.phorum.org/phorum5/read.php?61,150895,150900#msg-150900</link>
            <description><![CDATA[ Well then, create yourself a script to do it in the database.<br />
no ready to go solution for you.]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>5.2 Phorum Support</category>
            <pubDate>Wed, 01 Feb 2012 13:12:35 -0600</pubDate>
        </item>
        <item>
            <guid>http://www.phorum.org/phorum5/read.php?61,150895,150897#msg-150897</guid>
            <title>Re: How to create 30k blank user on the phorum?</title>
            <link>http://www.phorum.org/phorum5/read.php?61,150895,150897#msg-150897</link>
            <description><![CDATA[ No ssh access at the moment.]]></description>
            <dc:creator>Janie</dc:creator>
            <category>5.2 Phorum Support</category>
            <pubDate>Wed, 01 Feb 2012 06:44:09 -0600</pubDate>
        </item>
        <item>
            <guid>http://www.phorum.org/phorum5/read.php?61,150895,150896#msg-150896</guid>
            <title>Re: How to create 30k blank user on the phorum?</title>
            <link>http://www.phorum.org/phorum5/read.php?61,150895,150896#msg-150896</link>
            <description><![CDATA[ If you got ssh access ... there is an stress test script in the scripts folder which can create lots of messages and users, selectively.]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>5.2 Phorum Support</category>
            <pubDate>Wed, 01 Feb 2012 00:48:55 -0600</pubDate>
        </item>
        <item>
            <guid>http://www.phorum.org/phorum5/read.php?61,150895,150895#msg-150895</guid>
            <title>How to create 30k blank user on the phorum?</title>
            <link>http://www.phorum.org/phorum5/read.php?61,150895,150895#msg-150895</link>
            <description><![CDATA[ Good Day.<br />
 I need to create around 30k blank users on my fresh phorum installation. What I mean by that is - I need a record of that 30k in my database(mysql) and on my phorum script. Every user would appear in my admin panel, so I could manipulate the details. The easiest approach would be to create those 30k by hand, unfortunately it is unreal due to time factor. This is not a thread about spamming and bots. Hence:<br />
 I have an access to the phpmyadmin, ftp, and of course via the admin panel on the phorum.<br />
 Is it possible? Is there a module around for that purpose I am not aware of. <br />
 Every nudge is deeply appreciated.<br />
Janie]]></description>
            <dc:creator>Janie</dc:creator>
            <category>5.2 Phorum Support</category>
            <pubDate>Tue, 31 Jan 2012 14:37:31 -0600</pubDate>
        </item>
    </channel>
</rss>
