Thanks,<br><br>I have installed captcha, and it seems to be working fine, but now I am having a hard time not using captcha. I would like to only use the captcha for comments, so if I am logged in, not require it. There are a couple of suggestions in the captcha comments.<br>
<br>This one <br><pre>if (($page=='MyPage1' || ($page=='MyPage2')) && $action != 'edit') {<br>        $EnablePostCaptchaRequired = true;<br> }<br></pre>I tried changing to <br><br><pre>if (($Group=='Blog') && $action != 'edit') {<br>
        $EnablePostCaptchaRequired = true;<br> }<br></pre>But then it didn't require a captcha at all. This one also did not require a captcha for comments:<br><br>$EditFunctions = array_diff($EditFunctions, array('RequireCaptcha') ); <br>
<br>This one worked for requiring captchas for comments:<br><br><pre>$EnablePostCaptchaRequired = 1;<br> if (CondAuth($pagename,'edit'))<br> $EnablePostCaptchaRequired = 0;<br></pre>and I could login and edit, but I couldn't login and make changes to SiteAdmin. I use to use this code when I was using access codes:<br>
<br>if (substr_count($pagename,'edit') <br>|| substr_count($pagename,'SiteAdmin') <br>|| substr_count($pagename,'Blog/NewBlogPage') <br>) { <br>$EnableAccessCode = false; <br> } else { <br>## enter access code to write comment <br>
$EnableAccessCode = true; <br>} <br><br>Which worked great with $EnableAccessCode, but doesn't work with the $EnablePostCaptchaRequired variable. It requires the captcha code for comments, but doesn't let me save my edits, it still expects a captcha.<br>
<br>Any ideas?<br><br>thanks,<br>maria<br><br>