Installation instructions: WIRIS plugin for CKEditor1 Requirements
2 Copy filesUnzip the CKEditor WIRIS Plugin and copy the 2.1 For PHP servers
2.2 For ASP.NET servers
2.3 For ASP servers
2.4 As Java servlet
3 Configure3.1 On PHP, ASP.NET and ASP integrationsEdit 3.2 On Java integrationEdit It is essential to establish the value of the parameters 4 Include WIRIS plugin for CKEditor on your own platformYou must include some content on your CKEditor configuration file 4.1 For CKEditor 3The result should be like this: /*
Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.editorConfig = function( config )
{
// Add WIRIS to the plugin list
config.extraPlugins += (config.extraPlugins.length == 0 ? '' : ',') + 'ckeditor_wiris';
// Add WIRIS buttons to the "Full toolbar"
// Optionally, you can remove the following line and follow
// http://docs.cksource.com/CKEditor_3.x/Developers_Guide/Toolbar
config.toolbar_Full.push({ name: 'wiris',
items : [ 'ckeditor_wiris_formulaEditor', 'ckeditor_wiris_CAS' ]});
};
Note: if you have a configured custom toolbar, you must add 4.2 For CKEditor 4The result should be like this: /*
Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.editorConfig = function( config )
{
// Add WIRIS to the plugin list
config.extraPlugins += (config.extraPlugins.length == 0 ? '' : ',') + 'ckeditor_wiris';
};
5 Check that the plugin works correctlyIn order to check if the plugin is installed correctly, there is a page that makes some tests on your server. Open this link to see where is your test page. 6 Clean and backup your WIRIS plugin for CKEditorCheck this page. |