Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter batman42ca

    (@batman42ca)

    I found the cause but the plugin needs to be updated to fix it.

    In wp-content\plugins\ckeditor-for-wordpress\filemanager\connectors\php\upload.php

    On line 44, this:

    $sType = isset( $_GET[‘Type’] ) ? $_GET[‘Type’] : ‘Files’ ;

    …should be this:

    $sType = isset( $_GET[‘type’] ) ? $_GET[‘type’] : ‘Files’ ;

    “type” should be all lowercase

    Plugin Contributor michal

    (@michal_cksource)

    @batman42ca thank you for report this. We try to check and fix this. Please be patient.

    Thread Starter batman42ca

    (@batman42ca)

    On second thought, it might also be true that whatever is calling the filemanager, needs to pass the “Type” url parameter with a capital “T” instead of a lowercase “t”.

    I’m not sure which is wrong, the caller or upload.php

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: CKEditor For WordPress] images uploaded to file directory’ is closed to new replies.