views:

125

answers:

2

Hi,
I'm trying to add FCKeditor extension in mediaWiki and I followed all the instructions that are written in their documentation http://www.mediawiki.org/wiki/Extension:FCKeditor_(Official)

but it throws me this error.


Strict Standards: Declaration of FCKeditorParser::makeImage() should be compatible with that of FCKeditorParserWrapper::makeImage() in C:\www\wiki\extensions\FCKeditor\FCKeditorParser.body.php on line 707

Strict Standards: Declaration of FCKeditorParser::parse() should be compatible with that of FCKeditorParserWrapper::parse() in C:\www\wiki\extensions\FCKeditor\FCKeditorParser.body.php on line 707

How can I solve this
Thanks

A: 

You should double check all your path variables in LocalSettings.php, especially $IP.

In the extension itself you should verify that $wgFCKEditorExtDir and $wgFCKEditorDir are set correctly.

Adrian Archer
A: 

Hello,

I have carried out the following changes in FCKeditorParser.body.php

Line 338: function makeImage ($nt, $options ,$holders=false)

line 488: function parse ($text, Headlining $title, ParserOptions $options, $linestart = true, $clearState = true, $revid = zero)

Roland