How to use .NET Uploader Solved

User's avatar
선미 이.
04:39 Sep 16, 2014
I bought plugin that doksoft_preview.
and I use ASP.NET Framework version 4.0 .

My editor's version is ckeditor_4.4.4_standard.

I want to call .net Uploader, but my plugin calls php Uploader.

First, Unpack the files to /ckeditor/plugins.

I added script at ckeditor/config.js like this,
config.extraPlugins = 'doksoft_preview';
config.doksoft_uploader_url = '/doksoft_uploader/uploader';

Check config.js file is loaded.

And I added .dll file at /bin/ folder.
And I copy at web.config some script.

what is my missing thing?

My debugger tells me file did not woking because web page calls .php uploader.
[The HTTP verb POST used to access path '/ckeditor/plugins/doksoft_uploader/uploader.php' is not allowed.]
HTTP/1.1 405 Method Not Allowed


And what is in the /doksoft_uploader/uploader ?

Now there is empty.

Is correct?

I want to use this plugin, but I didn't solve this problem.

Please help me.
Support team avatar
JS+
20:03 Oct 09, 2014
Hello,

Some time before we have figured out the bug when client part was not able to override default uploader URL. Not sure what version you have so I have sent you a letter with it.
Please update both client (plugin) and server (dll of uploader) part ant try again.

Please also note that parameter's names were changed. Here they are (just sample):
    <add key="doksoft_uploader_base_dir" value="/ckeditor-4.3/plugins/doksoft_uploader/userfiles/" />
    <add key="doksoft_uploader_file_max_size" value="0"/>
    <add key="doksoft_uploader_image_max_size" value="0"/>
    <add key="doksoft_uploader_file_allowed_extensions" value="*"/>
    <add key="doksoft_uploader_image_allowed_extensions" value="*"/>
    <add key="doksoft_uploader_jpeg_quality" value="95"/>
    <add key="doksoft_uploader_max_img_resize_width" value="2000"/>
    <add key="doksoft_uploader_max_img_resize_height" value="2000"/>
    <add key="doksoft_uploader_max_thumb_resize_width" value="500"/>
    <add key="doksoft_uploader_max_thumb_resize_height" value="500"/>