Hello, I apologise in advance for my low level of expertise in php and js.
I work for a charity and we have had a large funding cut, so we had to make savings where we could. As the Administrator, I volunteered to migrate our website from a managed Drupal-driven website to a hosted server with cPanel and Softaculous, which I have already done for another charity.
I got the site up and running failrly easily and installed the excellent CK editor and CK finder and loved them. The real problems began after I installed the WP Security plugin, which strongly advised changing the prefix of the wordpress databases... which broke our site.
A complete reinstall later, I had the site more or less working again, but , instead of teh WP installation being in root (which is where the hosting company had installed it at the time of purchase) Softaculous asks for a subdirectory to install to.
Now, while CK editor works fine, CK Finder does not appear to recognise my WP Administrator role (set in the CK Editor panel in WP as the only role authorised to use CK Finder), coming up with the message "The file browser is disabled for security reasons.... " etc.
I have been through your replies to other posts about this and tried everything suggested in them, Wictor, but I am afraid nothing you suggested worked and I simply don't know that I can try the 'cookies' workaround that WebDude discussed, back in 2008.
May I ask what I should enter where to make this section work?
function CheckAuthentication()
{
global $ckeditor_wordpress;
return $ckeditor_wordpress->file_browser == 'ckfinder' && current_user_can('ckeditor_ckfinder_access');
}
I really have tried everything, else I would not bother you.
Thank you so much for your time. I really appreciate your patience.
Best regards.
Toni
I work for a charity and we have had a large funding cut, so we had to make savings where we could. As the Administrator, I volunteered to migrate our website from a managed Drupal-driven website to a hosted server with cPanel and Softaculous, which I have already done for another charity.
I got the site up and running failrly easily and installed the excellent CK editor and CK finder and loved them. The real problems began after I installed the WP Security plugin, which strongly advised changing the prefix of the wordpress databases... which broke our site.
A complete reinstall later, I had the site more or less working again, but , instead of teh WP installation being in root (which is where the hosting company had installed it at the time of purchase) Softaculous asks for a subdirectory to install to.
Now, while CK editor works fine, CK Finder does not appear to recognise my WP Administrator role (set in the CK Editor panel in WP as the only role authorised to use CK Finder), coming up with the message "The file browser is disabled for security reasons.... " etc.
I have been through your replies to other posts about this and tried everything suggested in them, Wictor, but I am afraid nothing you suggested worked and I simply don't know that I can try the 'cookies' workaround that WebDude discussed, back in 2008.
May I ask what I should enter where to make this section work?
function CheckAuthentication()
{
global $ckeditor_wordpress;
return $ckeditor_wordpress->file_browser == 'ckfinder' && current_user_can('ckeditor_ckfinder_access');
}
I really have tried everything, else I would not bother you.
Thank you so much for your time. I really appreciate your patience.
Best regards.
Toni

Re: Lil' Old Newbie close to a nervous breakdown
http://codex.wordpress.org/Editing_wp-config.php
Re: Lil' Old Newbie close to a nervous breakdown
1) COOKIE-DOMAIN
should
2) WP-SITEURL
http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory
define('WP_HOME', 'http://' . $_SERVER['HTTP_HOST'] . '/public_html/wpinstall');
3) WP database prefixes
$table_prefix = 'newprefix_';
// Set the database table prefix and the format specifiers for database table columns.
wp_set_wpdb_vars();
var $prefix = '';
newprefix_ ?
Re: Lil' Old Newbie close to a nervous breakdown
We have one person with this same problem and this solution not help... I try to reproduce this but for me everything seems to work fine.
Could u PM me address to your site with login and password for admin account?
Then it will be easier to find bug and I could fix it quicker...
Greetings
Re: Lil' Old Newbie close to a nervous breakdown
Changes commited to SVN at revision: 374986 – u can download last DEV version where this problem is fixed now.
It will be released with new version of CKEditor plugin asap.
Greetings
Re: Lil' Old Newbie close to a nervous breakdown
Nice discussion is going on it proves
To be helpful for me and should be helpful for everyone,,,,
And I also really enjoyed it ….
Thanks,,,,,
Re: Lil' Old Newbie close to a nervous breakdown