Hello,
I'm trying to get the lates CKeditor working with Perch to upload images and files. I managed to get the editor configured and showing the"upload" button when I try to upload an image, however when after selecting my image and clicking "send to server" the script fails.
Specifically when I inspect the HTTP headers I see the url being reference like so:
Request URL:http://blanchard.monkinteractive.com/site-admin/core/apps/content/edit/PERCH_LOGINPATH/addons/plugins/editors/ckeditor/uploader.php?filetype=image&CKEditor=perch_9_contact_body_content&CKEditorFuncNum=3&langCode=en-gb
It should read like the following:
Request URL:http://blanchard.monkinteractive.com/site-admin/addons/plugins/editors/ckeditor/uploader.php?
The uploader.php file works with CKeditor V3, I'm trying to port the code so it works with the latest version. I can't seem to track down what's adding the "/apps/content/edit/" to the url. Any ideas?
Here's my config file contents:
I've been able to pinpoint
I've been able to pinpoint the problem more closely. The issue is the form upload URL, using chrome tools I was able to edit the image upload form submit url and get it working.
Here is the form upload iframe content, specifically the opening form tag. I need to figure out what piece of code is generating this form tag.
Does anyone know what's generating that form tag?