Editor Not Displaying - Theme Issue?
Fragment of a discussion from Extension talk:WYSIWYG
thanks Ridmi. Re-installed common skin and it now appearing. Have another issue regarding images, will start a new thread.
Niall
Hi, I fixed the "undefined index" like this if you need to get rid of the message:
tester@defqon:/var/www/mediawiki/packages$sudo diff extensions/WYSIWYG/CKeditor.body.php /var/www/mediawiki/extensions/WYSIWYG/CKeditor.body.php
432a433,435
> # KST Fix for:
> # PHP Notice: Undefined index: riched_load_semantic_toolbar in
> # /var/www/mediawiki-1.17.2/extensions/WYSIWYG/CKeditor.body.php on line 435, referer: http://defqon/defqonwiki/index.php/Main_Page
435,437c438,442
< if ( $wgUser->getOption( 'riched_load_semantic_toolbar', $wgDefaultUserOptions['riched_load_semantic_toolbar'] ) ) {
< $this->loadSTBonStartup = 1;
< }
---
> if (defined('SMW_HALO_VERSION')) {
> if ( $wgUser->getOption( 'riched_load_semantic_toolbar', $wgDefaultUserOptions['riched_load_semantic_toolbar'] ) ) {
> $this->loadSTBonStartup = 1;
> }
> }
-Kristian
<pre/>