Wow...I assumed admin the whole time. I have corrected and working. Thanks!
Printable View
I just installed the latest version, but the "paste" function isn't working. It tells me my browser setting don't allow my clipboard to be accessed (huh? it works everywhere else), pops up a separate window with instructions to "paste" using the keyboard. But when I do, it erases the data and the page remains blank. :(
Does anyone know how to fix this?
Working on an upgrade to ZC1.55e.
Reading through the installation instructions and looking at the files I noticed that there is only one file in the admin file for v1.55.
Should I use the admin file for 1.51-1.54?
Well I screwd something up.
I see CKEditor in the drop-down, but it's not showing up anywhere.
tried clearing my browser cache and reloading the admin page...Nuttin'.
On my way back to square one.
I've been adding mod's all day and this is the only one that's kicked my a$$.
Time for less HTML and more beer!
You should only have dropped the editors folder into your install. You did not need to do anything from any of the other admin folders, so if you used the 1.5.1 to 1.5.4 folder then you need to delete them from your install.
If you did add the files from the 1.5.1-1.5.4 folder, it should be very simple. Just go to your admin/includes and replace ckeditor.php with the original from the 1.5.5 fileset. There is nothing to uninstall. You could also delete the editors/ckeditor folder and re-upload in case something got messed up during the transfer.
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:
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".Quote:
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
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"?