Hello all! I found CouchCMS a few days ago and I absolutely love it. Documentation is top-notch.
I've started converting one of my websites over to Couch and ran into a problem. In some circumstances, when saving a popup_edit or inline_edit region I'll receive a 403 Forbidden error saying I don't have permission to access /couch/addons/inline/index.php. The following bare-bones template can reproduce the problem (on my server at least).
I can edit the main_content region without any problems. But almost any edits to the news_box region (such as making the text bold or adding a new line) results in the Forbidden error when saving. Edits made in the back-end to either region save just fine.
Any idea what could be going on?
I've started converting one of my websites over to Couch and ran into a problem. In some circumstances, when saving a popup_edit or inline_edit region I'll receive a 403 Forbidden error saying I don't have permission to access /couch/addons/inline/index.php. The following bare-bones template can reproduce the problem (on my server at least).
- Code: Select all
<cms:template title='Main'>
<cms:editable name='news_box' label='News Box' type='richtext' />
<cms:editable name='main_content' label='Content' type='richtext' />
</cms:template>
<cms:load_edit />
<html>
<head></head>
<body>
<cms:do_shortcodes>
<cms:show news_box /><cms:popup_edit 'news_box' />
<cms:show main_content /><cms:popup_edit 'main_content' />
</cms:do_shortcodes>
</body>
</html>
I can edit the main_content region without any problems. But almost any edits to the news_box region (such as making the text bold or adding a new line) results in the Forbidden error when saving. Edits made in the back-end to either region save just fine.
Any idea what could be going on?