We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 29357
    • 35 Posts
    Sirs

    Another one from 0.9.6.2-rc1 rev 3741 .

    I upgraded my TinyMCE to various levels over the one supplied. I could not get the filebrowser connector working for love nor money but investigation then found that the value of 0.9.6.2-rc1 rb_base_url a DB settings value has significantly changed in this version and this was reflected in the MCPUK connectot config in the manager version.

    I was forced to copy this change arounf line 90 of connectors/php/config.php to the new version. I will also bring this to the attention of the tinyMCE forum

    $basedir = $base_path.$rb_base_dir;
    if($_GET['editor'] == 'fckeditor2' && $strip_image_paths == 1){
    	$baseurl = $base_url.$rb_base_url;
    }else{
    	$baseurl = $site_url.$rb_base_url;
    }
    
    /*------------------------------------------------------------------------------*/
    /* The physical path to the document root, Set manually if not using apache	*/
    /*------------------------------------------------------------------------------*/
    $fckphp_config['basedir'] = (substr($basedir,-1)=="/") ? substr($basedir,0,-1):$basedir;