Hello again,
I am having a problem with guest comments. My site is not yet live and when I am logged in, I can add a comment and it is displayed ok. However, if I switch the site ‘on’ and then log out and try to add a comment as a guest, I get an error message: “You are not allowed to post comments.”
In the Comment Posting Preferences for the blog in question I have the following settings:
Allow Comments - Yes
Require membership - No
Enable Captcha - Yes
Require email - No
Moderate - No
I am using v. 1.7.1
I think the relevant piece of code is:
<div>
{exp:comment:form preview="blog/preview"}
{if logged_out}
Name: <input type=“text” name=“name” value=”{name}” size=“50” /></p>
Email: <input type=“text” name=“email” value=”{email}” size=“50” /></p>
Location: <input type=“text” name=“location” value=”{location}” size=“50” /></p>
URL: <input type=“text” name=“url” value=”{url}” size=“50” /></p>
{/if}
<textarea name=“comment” cols=“100” rows=“12”>{comment}</textarea></p>
<input type=“checkbox” name=“save_info” value=“yes” {save_info} /> Remember my personal information
<input type=“checkbox” name=“notify_me” value=“yes” {notify_me} /> Notify me of follow-up comments?
{if captcha}
Please enter the word you see in the image below:
{captcha}
<input type=“text” name=“captcha” value=”{captcha_word}” maxlength=“20” /></p>
{/if}
<input type=“submit” name=“submit” value=“Submit” />
<input type=“submit” name=“preview” value=“Preview” />
{/exp:comment:form}
</div>
I would be really grateful for any insights into why this might be happening!
Thank you,
Marian