joscplan
✭-
Re: Compare an user password
Update: Found the problem. The value I was using as the password was encrypted on the database as varbinary(100) i had to convert that to CHAR using this: cast(Password as CHAR) Then i retrieved the … (View Post)2 -
Re: Creating user friendly URL's throughout whole forum
You don't need to do that on the .htaccess you can do it in "dashboard/routes" There you can modify routes to be more user friendly. http://vanillaforums.org/page/routes (View Post)1 -
Re: Is there a way to add the chat box into another page?
So insted of adding $Sender->AddModule('van2shoutdiscussionsmodule','Content'); in defualt.php I added $Session = GDN::Session(); if($Session->CheckPermission('Plugins.Van2Shout.View')) { //Inc… (View Post)3