Hi,
I know this has been gone through a few times and I've tried all of the fixes and configuration options detailed in all those fixes, but am having no luck.
I have verified that I have the require_once "../../../../../filemanager.config.php"; line in the correct place.
This happens when:
User is logged in. Creates a new Page. Clicks the Insert Image button and then the Browser Server button. This error is then displayed.
Can someone explain to me what causes this error so I can figure out how to fix it?
Drupal 6.14 and fckeditor 6.x=14
Thanks
Comments
Comment #1
Jorrit commentedFirst of all, could you try FCKeditor module 2.1? Second, are you using any special mod_rewrite directives in your .htaccess?
Comment #2
adminenvt commentedhello
i had the same problem and solved it by adding
$Config['Enabled'] = true;
just after require_once "../../../../../filemanager.config.php"; line
it is working until now.
hope that will help you.
Comment #3
Milkrow commentedI was having the same issue and tried changing the same line under global $Config ; but wasn't able to get it working. So I changed the global $Config ; line to false: $Config['Enabled'] = false; and then completed the step adminenvt prescribed above and it worked. What causes the error in the first place. Anyone know?
Comment #4
Jorrit commentedI don't know. I had this error a long time ago, I can't remember how I fixed it. You can try CKEditor as well.
Comment #6
aschiwi commentedSolution in comment #2 helps me as well, thanks. This must be some kind of server problem, same code locally does not give me the error, but it does on the server.