author | Anthony Ly <anthonyly.com@gmail.com> |
Tue, 12 Mar 2013 18:21:39 +0100 | |
changeset 206 | 919b4ddb13fa |
parent 194 | 32102edaa81b |
permissions | -rw-r--r-- |
136 | 1 |
<?php |
2 |
/** |
|
3 |
* config.php |
|
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
4 |
* |
136 | 5 |
* @package MCManager.includes |
6 |
*/ |
|
7 |
// General settings |
|
8 |
$config['general.engine'] = 'GoogleSpell'; |
|
9 |
//$config['general.engine'] = 'PSpell'; |
|
10 |
//$config['general.engine'] = 'PSpellShell'; |
|
11 |
//$config['general.remote_rpc_url'] = 'http://some.other.site/some/url/rpc.php'; |
|
12 |
||
13 |
// PSpell settings |
|
14 |
$config['PSpell.mode'] = PSPELL_FAST; |
|
15 |
$config['PSpell.spelling'] = ""; |
|
16 |
$config['PSpell.jargon'] = ""; |
|
17 |
$config['PSpell.encoding'] = ""; |
|
18 |
||
19 |
// PSpellShell settings |
|
20 |
$config['PSpellShell.mode'] = PSPELL_FAST; |
|
21 |
$config['PSpellShell.aspell'] = '/usr/bin/aspell'; |
|
22 |
$config['PSpellShell.tmp'] = '/tmp'; |
|
23 |
||
24 |
// Windows PSpellShell settings |
|
25 |
//$config['PSpellShell.aspell'] = '"c:\Program Files\Aspell\bin\aspell.exe"'; |
|
26 |
//$config['PSpellShell.tmp'] = 'c:/temp'; |
|
27 |
?> |