1
|
1 |
<?php |
|
2 |
/** |
|
3 |
* config.php |
|
4 |
* @package MCManager.includes |
|
5 |
* @author Moxiecode |
|
6 |
* @copyright Copyright � 2007, Moxiecode Systems AB, All rights reserved. |
|
7 |
*/ |
|
8 |
// General settings |
|
9 |
$config['general.engine'] = 'GoogleSpell'; |
|
10 |
//$config['general.engine'] = 'PSpell'; |
|
11 |
//$config['general.engine'] = 'PSpellShell'; |
|
12 |
//$config['general.remote_rpc_url'] = 'http://some.other.site/some/url/rpc.php'; |
|
13 |
|
|
14 |
// PSpell settings |
|
15 |
$config['PSpell.mode'] = PSPELL_FAST; |
|
16 |
$config['PSpell.spelling'] = ""; |
|
17 |
$config['PSpell.jargon'] = ""; |
|
18 |
$config['PSpell.encoding'] = ""; |
|
19 |
|
|
20 |
// PSpellShell settings |
|
21 |
$config['PSpellShell.mode'] = PSPELL_FAST; |
|
22 |
$config['PSpellShell.aspell'] = '/usr/bin/aspell'; |
|
23 |
$config['PSpellShell.tmp'] = '/tmp'; |
|
24 |
|
|
25 |
// Windows PSpellShell settings |
|
26 |
//$config['PSpellShell.aspell'] = '"c:\Program Files\Aspell\bin\aspell.exe"'; |
|
27 |
//$config['PSpellShell.tmp'] = 'c:/temp'; |
|
28 |
?> |