you see my site uses SALT by the looks of it i could be wrong but the PunBB forum does'nt, can someone tell me otherwise?

please can someone help me.

hi their

i am looking into seeing if its possible to merge a database (supplied below) from my members based website to the PunBB forum, so when members loginto my website they also can start using the forum without having to re-login to the forum, members passwords on my website are encrypted with salt,


heres the sql database from my members based website,

CREATE TABLE `user` (
  `userid` int(5) NOT NULL auto_increment,
  `username` varchar(20) NOT NULL default '',
  `password` varchar(32) NOT NULL default '',
  `salt` char(3) NOT NULL default '',
  `email` varchar(100) NOT NULL default '',
  `real_name` varchar(100) NOT NULL default '',
  `hide_email` tinyint(1) NOT NULL default '0',
  `can_approve` tinyint(1) NOT NULL default '0',
  `can_admin` tinyint(1) NOT NULL default '0',
  `can_gallery_mod` tinyint(1) NOT NULL default '0',
  PRIMARY KEY  (`userid`)
) TYPE=MyISAM AUTO_INCREMENT=2 ;


thank-you,
Linux_InSide

Thank You!

Hi There

Can someone please tell me how to Disable GUESTs from posting in my forum,

With Regards,
Linux InSide.