Support topics for CKEditor Quick Image Upload

Totally 23 solved problems
Go to the products list

logo
CKEditor Quick Image Upload
Problem with max image size
5 replies Solved

If the max image size box is checked the image file uploads successfully but the image tag is not inserted in the CKEditor. So I added
code]
doksoft_image_default_img_resize : false,
doksoft_image_img_resize_show : true,[/code]
to the config data when doing the CKEDITOR.replace. The box for image resize is unchecked but the resize panel is still displayed.
I'd like to either hide the panel completely since checking image Max Size doesn't add the image tag or fix the problem with the Max Size checkbox.
If Max Size is checked then the following error occurs:
code]TypeError: Cannot read property 'substr' of null in all.js[/code]

logo
CKEditor Quick Image Upload

I try to get Image and upload to work but it doesn`t work at all.
I uploaded both foders into the pluginfolder.
I did it like mentioned in the description and changed the config.js. See here. Unfortunately no icon does appear. What am I doing wrong?

logo
CKEditor Quick Image Upload

I’ve tried to install the CKEditor add on “CKEditor Quick Image Upload+” with no luck.
I am using ExpressionEngine with Expresso. Expresso works like breeze, but installing the plugin is a problem. Anyone having any experience with this?
Here is what Expresso docs says:
code]You can manually install any CKEditor plugins you want as follows:
Upload the plugin into the themes/third_party/expresso/ckeditor4.1/plugins folder
Edit themes/third_party/expresso/javascript/expresso.js and add the plugin name to the list of extra plugins in following line:
extraPlugins: "headers,mediaembed,autogrow",
In my case it is: extraPlugins: "headers,mediaembed,autogrow,doksoft_image,doksoft_uploader",
code]
I unpacked and uploaded
code] /waypoint.no/Royseplassen/themes/third_party/expresso/ckeditor4.1/plugins/doksoft_image
waypoint.no/Royseplassen/themes/third_party/expresso/ckeditor4.1/plugins/doksoft_uploader
code]
I modified

/waypoint.no/Royseplassen/themes/third_party/expresso/ckeditor4.1/config.js`
and inserted this lines:
code]config.extraPlugins = 'doksoft_image';
config.toolbar_name = [['doksoft_image']];
config.doksoft_uploader_url = '/waypoint.no/Royseplassen/themes/third_party/expresso/ckeditor4.1/plugins/doksoft_uploader/uploader.php';
code]
in
code]ckeditor4.1/plugins/doksoft_uploader/config.php[/code] I edited theses lines:
code]
if (substr($config['BaseUrl'], -1) !== '/')
config['BaseUrl'] .= 'http://waypoint.no/Royseplassen/images/uploads/';
if (substr($config['BaseDir'], -1) !== '/' && substr($config['BaseDir'], -1) !== '\\')
config['BaseDir'] .= '/kunder/waypoint.no/Royseplassen/images/uploads/';[/code]
But despite this, the new image icon doesen’t show up in the toolbar. Just the default one with its default action.
Appreceiate any suggestions.
Ray

logo
CKEditor Quick Image Upload
ASP.NET Image Uploader error
1 replies Solved

I purchased CKEditor Bundle: Image and File utilites for ASP.NET/ASP/Java/CF Multisite license
On the Installation, I get to:
Configure upload URL: config.doksoft_uploader_url. Set it to URL of your CKFinder server script.
Where is that supposed to point to?
I am intalling this with the CKEditor for DotNetNuke.
So, my CKFinder folder is here:\Providers\HtmlEditorProviders\CKEditor\CKFinder
I have tried pointing it to the folder. And, to the ckfinder.html in that folder, and to the ckfinder.js in that folder. But, when I try to upload a file, I get the following error: 405 (Method Not Allowed)

logo
CKEditor Quick Image Upload
Installation paths unclear
7 replies Solved

I am having trouble installing the CKEditor Quick Image Upload+ plugin. The icon has been added to the CKEditor toolbar and I can open the dialogue box and navigate to a file ok. But when I try to upload, the red circle is replaced with a yellow warning triangle and the file does not upload.
The installation guide is not 100% clear on where to amend the upload path in the config.php file, and I may have the path to the actual uploader wrong in my config.js file also.
For example, exactly where in these lines do I add my own upload file paths in the config.php file?
code]$config['BaseUrl'] = preg_replace('/(uploader\.php.*)/', 'userfiles/', $_SERVER['PHP_SELF']);[/code]
and
code]$config['BaseDir'] = dirname(__FILE__).'/userfiles/';[/code]
and does the path to the php uploader in the config.js file need to be absolute or can it be relative?:
EG
code]config.doksoft_uploader_url = '/admin/ckeditorfull/plugins/doksoft_uploader/uploader.php';[/code]
or
code]config.doksoft_uploader_url = 'plugins/doksoft_uploader/uploader.php';[/code]
neither of the above work.
File permissions are ok, I think I am just struggling with the file paths...

logo
CKEditor Quick Image Upload

What I have uploaded to my site is missing the doksoft_uploader/config.js file and I can't find the original download link. Should I get a refund and purchase it again or what?

logo
CKEditor Quick Image Upload

I would like to know, if there is a possibility to upload images into exactly specified directory in CKFinder whilst I am uploading it on my CKEditor website preview. Now images are uploaded in root directory "Images" in CKFinder. I would like to specify a unique directory for each upload.
Martin

logo
CKEditor Quick Image Upload
upload path is gone...
1 replies Solved

The uploader is working fine locally on my testserver (windows with wamp)
I do use the standard paths defined in config.php being:
code]$config = preg_replace('/(uploader\.php.*)/', 'userfiles/', $_SERVER);
config = dirname(__FILE__).'/userfiles/';[/code]
as stated this works fine locally.
But when uploaded to a unix production server the path is broken i.e. it uploads the image to "userfiles",
it shows the image in the editor but after saving it only shows "<img src="\" />" in the sourcecode from the editor.
Making paths absolute in $config's does not solve the problem, i am desperate now because i can not solve this.
Any idea what the problem is?