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==&#39;MyPage1&#39; || ($page==&#39;MyPage2&#39;)) &amp;&amp; $action != &#39;edit&#39;) {<br>        $EnablePostCaptchaRequired = true;<br>     }<br></pre>I tried changing to <br><br><pre>if (($Group==&#39;Blog&#39;) &amp;&amp; $action != &#39;edit&#39;) {<br>
        $EnablePostCaptchaRequired = true;<br>     }<br></pre>But then it didn&#39;t require a captcha at all. This one also did not require a captcha for comments:<br><br>$EditFunctions = array_diff($EditFunctions, array(&#39;RequireCaptcha&#39;) ); <br>
<br>This one worked for requiring captchas for comments:<br><br><pre>$EnablePostCaptchaRequired = 1;<br>     if (CondAuth($pagename,&#39;edit&#39;))<br>         $EnablePostCaptchaRequired = 0;<br></pre>and I could login and edit, but I couldn&#39;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,&#39;edit&#39;)  <br>|| substr_count($pagename,&#39;SiteAdmin&#39;) <br>|| substr_count($pagename,&#39;Blog/NewBlogPage&#39;) <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&#39;t work with the $EnablePostCaptchaRequired variable. It requires the captcha code for comments, but doesn&#39;t let me save my edits, it still expects a captcha.<br>
<br>Any ideas?<br><br>thanks,<br>maria<br><br>