• Resolved shuwid

    (@shuwid)


    Hi,

    Line 30 in ckeditorclass.php is giving me problems:

    if ( $_SERVER[‘HTTPS’] ) {
    $siteurl = str_replace(‘http:’, ‘https:’, $siteurl);
    $this->plugin_path = str_replace(‘http:’, ‘https:’, $this->plugin_path);
    }
    It works for me if I change it to this:

    if ( isset($_SERVER[‘HTTPS’]) ) {
    if ( ‘on’ == strtolower($_SERVER[‘HTTPS’]) ) {
    $siteurl = str_replace(‘http:’, ‘https:’, $siteurl);
    $this->plugin_path = str_replace(‘http:’, ‘https:’, $this->plugin_path);
    }
    }

    Maybe this helps development a bit, Maybe not.

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

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: CKEditor For WordPress] would this be better’ is closed to new replies.