I downloaded UBERCMS V1 and whenever you register and try to go on the client it says you have to verify you're english by typing out some stupid sentence, does anyone know anyway of taking this off without causing any errors?
I downloaded UBERCMS V1 and whenever you register and try to go on the client it says you have to verify you're english by typing out some stupid sentence, does anyone know anyway of taking this off without causing any errors?
I second this, anyone know how to fix it?
bump ;s. Sorry for bumping a thread that's not one of my own but lol, I really need help with this too.
Could you post a snippet of Register & Client page on New - Pastie
Change something about "newbie_status" = 1 , that pages only work when newbie_status=0.
Yes it does Change it and just look up the code and delete it, Simple as hell
Then edit that class.users.php , when user registering it will be set for newbie_status=1 .Need a bit work because i'm not using ubercms now.
Can you post client.php please?
Client.php
Can't post the code here so I put it on pastebin;
<?php /*======================================================================= - Pastebin.com
Change this in client.php:
to:Code:if ($users->GetUserVar(USER_ID, "newbie_status", false) == "1") { header("Location: " . WWW . "/account/policy-verify"); exit; }
Also, you'd best make sure dbquery sanitizes input, but that's the fix.Code:if ($users->GetUserVar(USER_ID, "newbie_status", false) == "1") { dbquery("UPDATE users SET newbie_status = '2' WHERE id = '" . USER_ID . "' LIMIT 1"); header("Location: /client"); exit; }