Hello, I am trying to set up the comment submission form for a single entry across multiple sites…however I am getting a “You are not authorized to perform this action” error on submission of the comment. I have checked the comment posting permissions for the weblog and made sure comments are enabled, and I’m pretty sure there is nothing i am missing in that respect. This is happening when logged in as the super admin as well.
I have the following code in place
{exp:weblog:entries weblog="listing" site="siteA" status="open" entry_id="5"}
{title}<br>
{address_1}<br>
{description}<br>
<br>
<h3>Add Review:</h3>
<p>{exp:comment:form weblog="listing" entry_id="5" limit="1" site="siteA" preview="site/preview"}<br />
<label class="labelone" for="name">Name:</label></br><input type="text" name="name" value="{name}" id="name" size="18"/></p><br />
<label class="labeltwo" for="comment">Add a Review:</label><textarea name="comment" font="arial" value="{comment}" rows="10" id="comment" size="20"></textarea></p>
<p>{if captcha}<br />
Please enter the word you see in the image below:<br />
{captcha}</p>
<p><input type="text" name="captcha" value="{captcha_word}" size="20" maxlength="20" style="width:140px;" /></p><br />
<input type="submit" name="submit" value="Submit" /></p><br />
{if:else}<br />
<input class="commentsubmit" type="submit" name="submit" value="Submit" /></p><br />
{/if}</p>
<p>{/exp:comment:form}<br />
{/exp:weblog:entries}I have similar code working on a live site (minus the site paramater), meanwhile I am working with the MSM I downloaded on a local dev site before I put it live and replace the non MSM site
Is there anything I might be missing that would be causing this error?