Commenting out "STRICT_TRANS_TABLES" from MySQL's my.ini worked for me.

Code: Select all
$mosConfig_live_site = 'http://www.yourwebservername.com';
Code: Select all
http://yourwebservername.com/administrator
Here's my template index.php file. I have bohth mosShowHead and initEditor.DeanMarshall wrote:
If the editor works in the back-end but not the frontend then I suspect
that it may be related to the way your template is initiating the template.
Does your template use the mosShowHead() function or the older
initEditor (from memory - could be wrong) function.
Dean
I'm glad I found your post to scratch some ideas. My prob was that my config file is empty so there was nothing to fix. I decided to test a few things out and login to the Admin with http://www (using www) and the WYSIWYG Editor would not display. I then logged in the Admin with http:// (without www) and was able to see the editor and the icon functions worked perfectly.moira wrote: Here's an indepth redo of the FAQ Entry on WYSIWYG Editors - I think it should be replaced as many people think the problems are related to uncommen browers or something of the sort. I also added a detailed explaination of the problem and why it presumably occurs.
WYSWYG Editor Problems (Editing, Popups, Safari, Firefox, etc.)
Q: I have problems with adding/editing content and/or functions with Popups in my chosen WYSIWYG Editor. Why?
A: These Problems are not related to non-MS-Windows Browsers like Camino or Safari.
The issue described occurs in any Browser when the base domain URL set in the configuration.php file
and the Session-URL you used to reach the backend of the Joomla Installation differ in the absence
or presence of the 'www.' prefix to the domain name.
Let's look at a detailed explaination:
Say your configuration.php file contains this domain URL (with the 'www.' prefix):
and you have accessed your backend with this URL (without the 'www.' prefix):Code: Select all
$mosConfig_live_site = 'http://www.yourwebservername.com';
Then the URL with which you accessed the backend works as long as you are not dependantCode: Select all
http://yourwebservername.com/administrator
on URLs that were entirely dynamically generated on the server side. This changes whenever
you use editing or popup functions in any given WYSIWIG Editor, because the source of
WYSIWYG Editors get their URLs for the current Site entirely from the server.
Thus when a WYSWIG Editor Funktion (an add, edit or popup operation) tries to access data
and code on the server it uses an URL that differs from the one of the active session and fails
to get access to all the data, code and content needed in order to function properly. Image,
Link-editing and simular Popups either are empty or broken and other functions don't work
at all.
This also happens in the opposite case - if the $mosConfig_live_site variable in configuration.php
is set to a URL without the 'www.' domain-prefix and the active admin session has the
'www.' domain-prefix.
In order for any WYSIWIG Editor to function properly in any Version of Joomla! (current
stable at the time of this entry is 1.0.8 ) one must be sure to use the same URL literal that
is set in the configuration.php file when accessing the admin backend or any content that
is to be edited or added with a WYSIWYG Editor.
The fastest way to do this is - of course - changing the URL for access by either adding or
removing 'www.'. Preventing this problem entirely is not possible at the moment and
most probably involves changing the Joomla! sourcecode.
1. Different Computers have had the same result (no input boxes for content) - Different networks also.DeanMarshall wrote:
How many of these steps have you tried already and what were the results?
http://forum.joomla.org/index.php/topic,474.0.html
Dean