close   


DokuwikiFCK is no longer being supported.
It has been superceded by fckgLite and ckgedit.
close   
namespace:
close   
All questions, bug fixes, and feature requests should go through the mailing list. To subscribe to the list, do one of the following:

1. Send an email to fckglite-request@freelists.org with 'subscribe' in the Subject field
2. Visit the fckgLite page at http://www.freelists.org/list/fckglite
3. Or click the subscribe link below

Subscribe
 

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

removed:aspell_old [2011/02/21 10:19] (current)
Line 1: Line 1:
 +====== Spellchecker for windows pre-Feb 2010 ======
 +
 +
 +On Windows systems, you have to make two basic changes.
 +
 +
 +1. You have to download the aspell binary from [[http://​aspell.net/​win32/​|http://​aspell.net/​win32/​]] and then download and install your required language file(s).
 +
 +
 +2. Open  fckg/​fckeditor/​editor/​dialog/​fck_spellerpages/​spellerpages/​server-scripts/​spellchecker.php ​ and at the top of the file comment out:
 +
 +
 +<​code>​
 +$aspell_prog ​   = '​aspell'; ​   // by FredCK (for Linux)
 +</​code>​
 +
 +
 +and uncomment:
 +
 +
 +<​code>​
 +// $aspell_prog = '"​C:​\\Program Files\\Aspell\\bin\\aspell.exe"';​
 +</​code>​
 +
 +
 +So you will now have:
 +
 +
 +<​code>​
 +// $aspell_prog ​ = '​aspell'; ​ // by FredCK (for Linux)
 +$aspell_prog ​ = '"​C:​\\Program Files\\Aspell\\bin\\aspell.exe"';​
 +</​code>​
 +
 +
 +C:\Program Files\Aspell\bin\aspell.exe is the default location for the  aspell binary on Windows, but if yours is in a different location you  must change the path.  Make sure that you use the exact punctuation: ​  the path in double quotes surrounded by single quotes.
 +
 +
 +If you want to be able to select from a list of languages, then you make  a change to a second file:  fckg%%\%%fckeditor%%\%%aspell.php. At approximately ​ line 72 you have to add the windows binary to the function call.   ​So ​ change
 +
 +
 +<​code>​
 +exec("​aspell dump dicts",​ $dicts,​$retv);​
 +</​code>​
 +
 +
 +to:
 +
 +
 +<​code>​
 +$aspell_prog= '"​C:​\\Program Files\\Aspell\\bin\\aspell.exe"'; ​
 +exec("​$aspell_prog dump dicts",​ $dicts,​$retv);​
 +</​code>​
 +
 +
 +Then you will be able to click on the language button and make a language selection from the languages installed on your system.