I had a similar error. This was happening because the URL was encoded two times.
I explain more clearly below: 1. if you check the url after selecting the paragraph to add you should have something like: [code]http://YOURDOMAIN/magnoliaAuthor/.magnolia/dialogs/editParagraph.html?mgnlParagraphSelected=true&mgnlParagraph_configNode=&mgnlRichEPaste=&mgnlJsCallback=opener.document.location.reload%28%29%3Bwindow.close%28%29%3B&_configNode=&mgnlLocale=de&mgnlRichE=false&mgnlNode=mgnlNew&mgnlParagraph_saveHandler=&_saveHandler=&mgnlParagraph=custom-website-module%3Acomponents%2Fform%2FcustomFormSelection&mgnlRepository=website&mgnlNodeCollection=&so_on[/code] 2. But in my case I would have [code]https://YOURDOMAIN/magnoliaAuthor/.magnolia/dialogs/editParagraph.html?mgnlParagraphSelected=true&mgnlParagraph_configNode=&mgnlRichEPaste=&mgnlJsCallback=opener.document.location.reload%2528%2529%253Bwindow.close%2528%2529%253B&_configNode=&mgnlLocale=de&mgnlRichE=false&mgnlNode=mgnlNew&mgnlParagraph_saveHandler=&_saveHandler=&mgnlParagraph=custom-website-module%253Acomponents%252Fform%252FcustomFormEdit&mgnlRepository=website&so_on[/code] 3. You can notice the difference in the URL, just after "opener.document.location.reload" in the first case we have %28%29%3B in the second we have %2528%2529%253B. This is because %28%29%3B is itself URL encoded! You can check this on any online URL decoder, ie http://www.albionresearch.com/misc/urlencode.php -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=92f9baba-67fd-42b2-898a-a3c9e2408d0c ---------------------------------------------------------------- For list details, see http://www.magnolia-cms.com/community/mailing-lists.html Alternatively, use our forums: http://forum.magnolia-cms.com/ To unsubscribe, E-mail to: <[email protected]> ----------------------------------------------------------------
