$oFCKeditor->Config['SkinPath'] = $oFCKeditor->BasePath .'editor/skins/office2003/';
I use the above code to show the default 3 skins and they show up perfectly. However, any new/custom skin in the "skins" folder NEVER works. All that shows in the white text background. I have even copied the files from office2003 into a folder named "new" and replaced "new" with "office2003" and only the white text background will display.
I have also tried creating a custom skin location to display like this:
$oFCKeditor->Config['SkinPath'] = $oFCKeditor->BasePath .'myskins/office2003/';
and again, only the white text background displays.
Lastly, I have tried this code:
$oFCKeditor->Config['SkinPath'] = $oFCKeditor->BasePath .'editor/skins/office2003/'; // Skin Options: default, office2003, silver $oFCKeditor->Config['SkinEditorCSS'] = $oFCKeditor->Config['SkinPath'] .'fck_editor.css' ; // FCKConfig.SkinPath + "|<minified css>" ; $oFCKeditor->Config['SkinDialogCSS'] = $oFCKeditor->Config['SkinPath'] .'fck_dialog.css' ; // FCKConfig.SkinPath + "|<minified css>" ;
...which again work perfectly for the default 3 skins, but for any other custom skin added to the same location does not work.
I have flushed multiple browser's cache. I just tried just about every other combination I can think of. The bottom line is, the 3 default skins work perfectly, but anything outside the location and names of those 3 folder names never work.
The core FCKeditor code has not been touched.
Is this a bug or am I doing something wrong?