> I could really use a php programmer that also knows mysql. what I need > to have happen is to make phpBB use the same type of data that mediawiki > uses for the password column. phpBB currently uses md5, while mediawiki > uses a 32byte blob. I don't know what's put into the blog though, but > I'm guessing the md5 hashsum?
Yes: md5($password) or, if $wgPasswordSalt is set: md5($userid.'-'.md5($password)) If you give me a shell access to the server, I can try and test it myself. Martin _______________________________________________ glob2-devel mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/glob2-devel
