100asa:
I use zencart 1.3.9
Maybe the admin/configure?
or root configure?
but why html editr works fine and tiny-cke don't works?
Each editor has it's own "call" routine. Would have to look at the code on the page(s) affected to see why one works when another doesn't... For example, I just went into my admin and define page editors using ckeditor. Looking at the page source, I saw that the editor is called relative to the "current" directory rather than an absolute path to the location.
Looking through the files of the site I found that
the admin/includes/ckeditor.php file contains code on line 21 that says:
<script type="text/javascript" src="[how to get to the DIR_WS_EDITORS folder]/<?php echo DIR_WS_EDITORS ?>ckeditor/ckeditor.js"></script>
Where [how to get to the DIR_WS_EDITORS folder] has the relative path information to get from the admin directory to the root directory. Ideally, that portion should reflect the path to where your root directory is, but also take into consideration whether the connection is secure (https) or not secure (http) (assuming that an http/https call is made, although that does not seem to be the way DIR_FS_CATALOG is built/presented). Recommend using proper ZC function calls to build the link, but simply concatenating DIR_FS_CATALOG into the path should address your issue for each instance.
My guess is that the other editors that do not work have a similar statement. Looking at similiar calls in the html_editor.php file the location appears to be built using other ZC variables (DIR_FS_CATALOG for example). (I didn't go and try to find the exact construct for how the html editor is presented).