In sample 6 shipped with the FCKEd package there are two errors:
1 - both on IE and FF, if the server is hosted on Linux-based server (or also Tomcat on Windows), the "MyFindReplace" plugin doens show icons nor dialogs: this is caused by a little error in the fckplugin.js file of this plugin.
It references objects (icons and dialogs) in a directory "FindReplace" but in the sample the fisicaly path is "findreplace". So on Linux and Java based server you get a 404 error.
Easily fixed... just replace "FindReplace" with "findreplace" in the fckplugin.js file. Do not rename the folder, otherwise the plugin will not get loaded, unless you also change all other plugin registration things.
2 - the "tablecommands" plugin doesn't work correctly on Firefox... don't know why becuase it's quite simple, and also the JavaScript console doesn't display any error... luckily this plugin is quite useless... so, we can live without it, so just comment the line
//FCKConfig.Plugins.Add( 'tablecommands', 'en,it', sOtherPluginPath ) ;
Simone
1 - both on IE and FF, if the server is hosted on Linux-based server (or also Tomcat on Windows), the "MyFindReplace" plugin doens show icons nor dialogs: this is caused by a little error in the fckplugin.js file of this plugin.
It references objects (icons and dialogs) in a directory "FindReplace" but in the sample the fisicaly path is "findreplace". So on Linux and Java based server you get a 404 error.
Easily fixed... just replace "FindReplace" with "findreplace" in the fckplugin.js file. Do not rename the folder, otherwise the plugin will not get loaded, unless you also change all other plugin registration things.
2 - the "tablecommands" plugin doesn't work correctly on Firefox... don't know why becuase it's quite simple, and also the JavaScript console doesn't display any error... luckily this plugin is quite useless... so, we can live without it, so just comment the line
//FCKConfig.Plugins.Add( 'tablecommands', 'en,it', sOtherPluginPath ) ;
Simone