Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Before integrating and configuring the SCAYT plugin, CKEditor 4 should be properly configured in your web application. If you haven't done it yet, please download the latest version of the CKEditor 4 standard package and refer to CKEditor Quick Start Guide.

2. Activate SCAYT

...

plugin

If you are using the standard package of CKEditor 4, the SCAYT plugin is already there, which is pointed to the Free free services. To accomplish migration to the trial or paid version of SCAYT Server, the additional SCAYT parameters must be added to the CKEditor config.js file.

...

Code Block
languagejs
themeEmacs
config.scayt_srcUrl ="http(s)://your_host_name/virtual_directory/wscbundle/wscbundle.js";

2.2. Specify the path to the service installation where spelling and grammar check requests will be processed:

...

Note

If you are not able to use a custom port (e.g. 2880) to access the service and deployed the Server to use the FastCGI protocol (via the SSRV.CGI component), you need to use the different values to access the service properly. Now the entry point for the service requests will be the SSRV.CGI component.

Code Block
languagejs
themeEmacs
config.scayt_serviceProtocol='http(s)';
config.scayt_serviceHost='your_host_name';
config.scayt_servicePort ='443'; // this is the port of your web server or Java application server
config.scayt_servicePath ='virtual_directory/script/ssrv.cgi';


3. Adjust

...

default settings

Define additional SCAYT parameters, for example, start SCAYT spelling and grammar automatically, change default language, and others. For details, refer to SCAYT Parameters for CKEditor 4 guide. 

...