We have plogger installed on our clubbing community website. The only problem the feedback/comments with anyone being able to write a comment using any name and without logging in.
Does anyone know a way of creating a login (maybe using the member login details of our invision board) or intergrating with the invision board so they have to login to the board to post comments or even view the gallery?
thanks for the advice people, i like the cookie idea but i have no idea about php really. sire, ref. the code above...
is the thinking that i could just pop a bit of code in the top of the gallery index page to check if the cookie is present, and if it is, load the page, and if it isn't, redirect to another?
how would i go about this? i don't know enough about php syntax to pop these probably simple if and thens together! all help appreciated! :)
Keep in mind cookies can be edited or rejected; and you are back where you started.
Try this... log into your BB, then go to a page on your server. Run this PHP: echo "
";print_r($_SESSION);echo "
";
This will dump out everything in the $_SESSION superglobal, which is very likely how your BB is storing its authentication, including username, login_status, etc.
sire you goddam genius it works great, thanks for that!
it's not a completely secure arrangement but it may help discourage non-forum members leaving offensive comments on the gallery which is the problem we're having.