How do I change the registration limit so it lets a total of 5 accounts instead of just 1/2? I'm running Phoenix & RevCMS.
Printable View
How do I change the registration limit so it lets a total of 5 accounts instead of just 1/2? I'm running Phoenix & RevCMS.
Hello!
It's easy in RevCMS, it has a very easy editable Framework.
Open app.users.php - It's in htdocs/app/
Go to line 101 and you'll probably see this code:
The "1" That's bold, edit it to the amount you want to! :):Quote:
final public function hasClones($ip)
{
global $engine;
if($engine->num_rows("SELECT * FROM users WHERE ip_reg = '" . $_SERVER['REMOTE_ADDR'] . "'") == 1)
{
return true;
}
return false;
}
Good luck with your hotel.