Hi,

I think there may be a glitch in the mod... at least when the "optional" instructions for renaming the editor folder are applied.

I have a fresh install of zc155e, plus a few mods. CKEditor works just fine until I try renaming the 'editors' folder.

I added the following to my /admin/includes/configure.php:
define('DIR_WS_EDITORS', 'new_folder/');

Then I changed the name of my editor folder from "editors" to "new_folder".

When I log into Admin, there is a persistent error message that states:
You have an HTML editor selected in 'My Store' but the '/editors/' folder cannot be located. Please disable your selection or move your editor files into the '/editors/' folder
However, when I go to Admin > Configuration > My Store > HTML Editor, CKEditor appears on the drop down list. More over, I am able to open a product, edit the content using the wysiwyg, save it, and then go see my changes on the catalog. All while *not* having a folder named "editors".

Anyway, seems that the mod is hard coded to check for the specific folder "editors" rather than using the defined directive. I'm not sure where the check occurs, nor how to turn it off.

I'm thinking of simply reverting the folder name back because I'm not using an image uploader add on. I only did it because... well, seemed easy enough and more secure.

SIDE QUESTION:
While grepping for references to "editors/" I noticed that my .htaccess contains the following (for CEON uri):
# Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/editors/ [NC]

Unsure whether or not that could be sniffed out, I decided *not* to update that to:
# Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/new_folder/ [NC]

Seemed to work fine anyway. Am I safe to use my editor without "don't rewrite"?