Guardian wrote: |
Have you turned on error reporting in config.php and does it report any errors? |
My error reporting was turned on, but i finally did find the problem.
In the file modules/news/admin/index.php i changed all the fields and at that moment i've got a problem that there was no text in the editor.
That problem was resolved by changing the field name.
In the topic of my op the field name was named to story and storyext. That will never work.
This worked fine for me.
Code:echo "<br><br>"
."<b>"._STORYTEXT.":</b> ("._HTMLISFINE.")<br>"
# ."<textarea cols=\"50\" rows=\"12\" name=\"story\"></textarea><br>"
,wysiwyg_textarea("hometext", "$hometext", "NukeUser", "50", "12")
."<br><br><b>"._EXTENDEDTEXT.":</b><br>"
,wysiwyg_textarea("bodytext", "$bodytext", "NukeUser", "50", "12")
# ."<textarea cols=\"50\" rows=\"12\" name=\"storyext\"></textarea><br>"
|
The hometext and bodytext are for the admin section from the news module most important and of course the $hometext and $bodytext to show the message in the edit section...
My problem is solved and the editor is working.
Thnx for your support Guardian.