Recent Topics

1 May 02, 2006 18:38    

ive been looking at the back office but i see no option to set my blog so that only registrated users can post comments.

is there a way to make this work?

2 May 02, 2006 18:44

skins/<skinname>/_main.php find and add the red bit :-

$disp_comment_form = is_logged_in(); // Display the comments form if comments requested

htsrv/comment.post.php find and add the red bit :-

require_once( dirname(__FILE__) . '/../evocore/_main.inc.php' );
if ( !is_logged_in() ){
header_nocache();
header_redirect();
exit;
}

¥

4 May 18, 2006 02:28

Even after adjusting the code as stated I am still getting spam. Any advice?

5 May 18, 2006 10:18

That should have stopped all your comment spam, which only leaves trackbacks and pingbacks, both of which can be disabled from admin > blogs > [blog name] > advanced

¥


Form is loading...