I have Firefly's query hack installed, which is great for running querys and has helped me a lot. I just downloaded a hack but the author did not give the full query to enter and I'm a little stumped.
What's the full query to do the following?
Code:
use phpMyAdmin to add a row to the user table.
filed : alias
type : varchar
length : 250
and
"then use phpmyadmin to edit 'allowmultiregs' in the settings table to change the description to:"
Code:
Normally, vBulletin will stop users signing up for multiple names by checking for a cookie on the user's machine. If one exists, then the user may not sign up for additional names.<br>If you wish to allow your users to sign up for multiple names, then select yes for this option, and they will not be blocked from registering additional usernames.<br>You may track also track multiples. By using this option, the site will try to track and identify other screen names used by each member.
and change the optioncode to
Code:
<select name=\"setting[$setting[allowmultiregs]]\">
<option value=\"0\" ".iif($setting[value]==0,"selected","").">NO - Don't allow multiples</option>
<option value=\"1\" ".iif($setting[value]==1,"selected","").">YES - allow multiples</option>
<option value=\"2\" ".iif($setting[value]==2,"selected","").">YES - but track multiples</option>
</select>
Thanks,
Syl...