Uhh...what CMS are you using?
This is a discussion on [help] Webserver Registration within the Rose Online forums, part of the MMO and MMORPG Developments category; im using xampp, the problem is when i register and type in with pass it exposes my password like for ...
im using xampp, the problem is when i register and type in with pass it exposes my password like for example
username: mr.gogo
password: mr.gogo
password should like be like this one *****
how can i make the password **** like this one?
and final
how can i login or register on the admin page?
looking forward for your help.. thanks
Casually Dressed and Deep in conversation
Uhh...what CMS are you using?
3.2lite
Casually Dressed and Deep in conversation
In your php file, look for
name="pass" type="text"
change it to
name="pass" type="password"
last how can i register as a admin..? so i can login to my webserver.
Casually Dressed and Deep in conversation
as a admin..
Casually Dressed and Deep in conversation
Another problem
when i will login to conrol panel it says you are banned..
how can i configure this one.
Casually Dressed and Deep in conversation
For admin login, make sure your accesslevel is set to 300 in accounts.
my last problem...
when i will login to control panel it says you are banned..
how can i configure this one.
thanks in advance for all your help monkeyrose.. i owe you a lot. hehe..
Casually Dressed and Deep in conversation
I believe that if the user isn't found, it simply reports that the user has been banned.
$result1 = "SELECT * FROM `accounts` WHERE username='$U' and password='$P' and ((accesslevel = '100') OR (accesslevel = '300'))";
ive change that one. still banned. :(
Casually Dressed and Deep in conversation
Run that query from Navicat and see if it works, but of course, enter your userid and md5(yourpassword).
Or if you browse accounts, do you see your userid, a md5 hash of your password, and accesslevel = 300?
Note: you can see your password value via the query:
select md5('yourpassword')
got it... the problem is on the players control panel when you login it would say your ban.,.
Casually Dressed and Deep in conversation
Do you have both accesslevels in your cplogin.php file?
$result1 = "SELECT * FROM `accounts` WHERE username='$U' and password='$P' and ((accesslevel = '100') OR (accesslevel = '300'))";
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'ODBC'@'localhost' (using password: NO) in C:\xampplite\htdocs\modules\login.php on line 24
ive configure it already you can login but this will show... you can still login and
edit your character etc. but still this msg shows.
Casually Dressed and Deep in conversation