I have problem with TinyMCE editor in admin section. TinyMCE WYSIWYG is permanently off, checkbox for putting them on return this error:
"toggleEditor is not defined"
I am using Czech translate and czech admin interface with UTF8.
Any idea ?
Problem with TinyMCE
Re: Problem with TinyMCE
The problem is in bloody
mode rewrite !
Request for tinyconfig.php is redirect to index.php?page=modules/TinyMCE/tinyconfig.php
Then CMS return 404 page not found, instead javascript code.

Request for tinyconfig.php is redirect to index.php?page=modules/TinyMCE/tinyconfig.php
Then CMS return 404 page not found, instead javascript code.
Re: Problem with TinyMCE
Problem solved:
RewriteCond %{REQUEST_URI} !^modules
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?page=$1 [QSA]
RewriteCond %{REQUEST_URI} !^modules - this line exclude from rewrite rule all in modules
And don't forget, that modules folder shall have 755 attribute.
RewriteCond %{REQUEST_URI} !^modules
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?page=$1 [QSA]
RewriteCond %{REQUEST_URI} !^modules - this line exclude from rewrite rule all in modules
And don't forget, that modules folder shall have 755 attribute.