Re: Support Thread for CKEditor Plugin for Zen Cart
In case anybody else stumbles in here with that same problem (error message after renaming the 'editors' folder), below is a bandaid.
Open /admin/includes/init_includes/init_errors.php and search for: ERROR_EDITORS_FOLDER_NOT_FOUND
On line 179, I found:
// Editor alerts
if (HTML_EDITOR_PREFERENCE != 'NONE' && !is_dir(DIR_FS_CATALOG . 'editors')) {
$messageStack->add(ERROR_EDITORS_FOLDER_NOT_FOUND, 'caution');
}
Replaced that with:
// Editor alerts
if (HTML_EDITOR_PREFERENCE != 'NONE' && !is_dir(DIR_FS_CATALOG . DIR_WS_EDITORS)) {
$messageStack->add(ERROR_EDITORS_FOLDER_NOT_FOUND, 'caution');
Worked like a charm.
Re: Support Thread for CKEditor Plugin for Zen Cart
Does anyone know if CKEditor for Zen car is compatible with Tabbed products pro?
Re: Support Thread for CKEditor Plugin for Zen Cart
Quote:
Originally Posted by
AnthonyEnnis
Does anyone know if CKEditor for Zen car is compatible with Tabbed products pro?
Should be, they are unrelated plugins.
Re: Support Thread for CKEditor Plugin for Zen Cart
I'm rebuilding my 154 to 155e and the latest CKEditor. While reinstalling I noticed two files with 777 permissions; ckeditor-custom-button-bar.png and config.js. Is this necessary?
Re: Support Thread for CKEditor Plugin for Zen Cart
Quote:
Originally Posted by
charmlt
I'm rebuilding my 154 to 155e and the latest CKEditor. While reinstalling I noticed two files with 777 permissions; ckeditor-custom-button-bar.png and config.js. Is this necessary?
The short answer is no. Most hosts don't even allow 777 on files. For normal operation the permissions should be 644
1 Attachment(s)
Re: Support Thread for CKEditor Plugin for Zen Cart
A quick question, does anyone try to use the Image Uploader and Browser for CKEditor plugin?
I installed it following the instuction but it wont work. Just uploading it and modifying the config.js in \editors\ckeditor doesn't seem to make any difference...
And a note, after installing the last version available for download (4.6.2) if i press the info button on ckeditor panel i got this
Attachment 17410 as You can see it state version 4.4 is used... :huh: is that normal?
Re: Support Thread for CKEditor Plugin for Zen Cart
Hi again,
solved both problems... last one was an update error of Chrome, just pressed ctrl+F5 and it fixed.
As regarding the upload image plugin, I've changed and installed the following:
http://budgetwebdesign.com.au/ckeditor-w-kcfinder.php
It was made by a forum user but never uploaded to the plugin and I don't know if it could be considered a plugin either... I've installed and checked it, it works fine, just be sure to write the path in the config.js correctly (in my case i'm testing it in local enviroment so the path would be something like:
PHP Code:
config.filebrowserBrowseUrl = '../editors/kcfinder/browse.php?type=files';
).
Also where it says in the readme_kcfinder.html to kcfinder_private_url_rename_me simply put the name of the directory used (again check the path in the config.php inside the kcfinder directory).
Hope it wil be of use.
Best regards
2 Attachment(s)
Re: Support Thread for CKEditor Plugin for Zen Cart
Icon images won't show.
I checked invisible icon with an "Inspector" in FireFox browser by placing cursor on this icon.
Attachment 17589
Line below is crossed:
background-image: url('https://idtagsonline.com/test/editors/ckeditor/plugins/icons.png?t=H0CG');
Attachment 17590
But file icons.png exist in this folder.
What is it indication of?
Re: Support Thread for CKEditor Plugin for Zen Cart
Something on your server is blocking the icon image file from being able to be read correctly.
2 Attachment(s)
Re: Support Thread for CKEditor Plugin for Zen Cart
Thank you again for your effort with this problem. :smile:
I had more reading recently and then even more and I found a tip here:
https://ckeditor.com/old//comment/67939#comment-67939
which suggest to use "Auto" option instead of ACII when FTP CKeditor files:
Attachment 17598
This simple thing resolved the problem and Icons show up now:
Attachment 17599
I hope it will be shorter journey for others. :smile: