when somebody tries to login to my server, it just says ID is blocked
help please
Printable View
when somebody tries to login to my server, it just says ID is blocked
help please
Make sure his id access level isnt 0..you can check it at database>account
oh but how do i do it always will be 100 when they create an acc?
right click on your account table>desing table,find access level and put it to 100 default so everytime they register the'll have 100 acces level
is it the one called "Decimals"?
i think that will fix your db,or maybe your registering page,when they register you put the account acceslevel to 0
DROP TABLE IF EXISTS `accounts`;
CREATE TABLE `accounts` (
`id` int(255) NOT NULL auto_increment,
`username` varchar(32) NOT NULL default '',
`password` varchar(32) NOT NULL default '',
`accesslevel` int(3) NOT NULL default '0',
`logged_in` int(1) NOT NULL default '0',
`channelnum` int(255) NOT NULL default '0',
`bankpassword` int(4) NOT NULL default '0',
`bankpenya1` int(9) NOT NULL default '0',
`bankpenya2` int(9) NOT NULL default '0',
`bankpenya3` int(9) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=287 DEFAULT CHARSET=latin1;
it wont change it to 100 ;s
dont mind about changing it,i think its your registration page,you put it to 0 access level in ur .php,check it inside there..dont bother about the db,it was my mistake..
okay but what PHP file should i look on?
Urmm,your registriation.php
there aint a line that says something about "AllowAcces"
Dude,just try to register and look if its changed..
nope