That fixed it
Nice work.
it's actually looking for 'karma.php' the install said to throw it in your phpBB root path, so it should be at the script path.
Also, I think I found the problem , I coded this script under phpBB 2.0.4 and you're using 2.0.6, I took a look at 2.0.6 and it doesn't have the POSTER_ID in viewtopic.php
open viewtopic.php in your phpBB root path and
Hope this fixes itCode:#After 'POSTER_NAME' => $poster, #Add 'POSTER_ID' => $poster_id,
sorry about the trouble, forgot to mention I was working with 2.0.4
I do have a request though.
I have guest posting enabled, but guests can't use karma (And I don't want them to). When they try, they get a 500/404 error. Can an error message be setup instead? (ie, Sorry, guests can't use karma)
???
For people not logged in, it should send them to the login page
Look for a line that says
header('Location login.php'
it should be changed to
header('Location: login.php'
Bookmarks