• I figure this is a permissions issue, but I can’t figure out what combination of settings it takes to make it go away. I, as admin, can embed a photo in a comment or reply; but my subscribers can’t. Not in Firefox, not in Safari, not in Chrome. IE hasn’t been mentioned, which warms my heart. Still, It’s driving them nuts.

    One possible problem is that “File Browser” is currently disabled, and can’t be enabled. Every time I try, when I click back to that screen it’s disabled again. As I understand it, though, this enables you to choose a file from your desktop, whereas clicking the “Image” icon in the Comment box simply pops up a properties form that allows you to type in a URL. Seems like a separate function to me.

    https://www.ads-software.com/extend/plugins/ckeditor-for-wordpress/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Contributor michal

    (@michal_cksource)

    Hi @who_dat,
    your issue looks like related with CKFinder (File Browser) permissions settings. Please check readme.txt file in CKFinder subdirectory in CKEditor plugin directory.
    In this file there is a description how to install CKFinder File Browser.
    After correctly install of CKFinder, you can set users permissions in
    “CKFinder Options” options in Upload Options tab of CKEditor’s plugin settings.

    I’m having the same issue, but CKFinder shouldn’t be the issue as we’re trying to embed external images?

    Admin can but other users can’t.

    Please advise. ??

    Plugin Contributor michal

    (@michal_cksource)

    @seand11,
    please can you write steps to reproduce to your issue?
    What exactly you do and where is a problem.
    Does it works fine where you disable CKEditor for wordpress plugin ?

    This fixed it, in functions.php! WordPress was stripping the tags, not the editor.

    // Allow img tags.
    global $allowedtags;
    $allowedtags['img'] = array(
                            'alt' => array (),
                            'align' => array (),
                            'border' => array (),
                            'class' => array (),
                            'height' => array (),
                            'hspace' => array (),
                            'longdesc' => array (),
                            'vspace' => array (),
                            'src' => array (),
                            'style' => array (),
                            'width' => array (),
    );

    Plugin Contributor michal

    (@michal_cksource)

    @seand11 thank you for you investigation ??

    @seand11

    Can you tell us how exactly you fixed it?

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘[Plugin: CKEditor For WordPress] Subscribers can't embed images in comments’ is closed to new replies.