mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
e550de71e3
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@93610 467b73ca-7a2a-4603-9d3b-597d59a354a9
23 lines
741 B
PHP
Executable File
23 lines
741 B
PHP
Executable File
<?php
|
|
// General settings
|
|
$config['general.engine'] = 'GoogleSpell';
|
|
//$config['general.engine'] = 'PSpell';
|
|
//$config['general.engine'] = 'PSpellShell';
|
|
//$config['general.remote_rpc_url'] = 'http://some.other.site/some/url/rpc.php';
|
|
|
|
// PSpell settings
|
|
$config['PSpell.mode'] = PSPELL_FAST;
|
|
$config['PSpell.spelling'] = "";
|
|
$config['PSpell.jargon'] = "";
|
|
$config['PSpell.encoding'] = "";
|
|
|
|
// PSpellShell settings
|
|
$config['PSpellShell.mode'] = PSPELL_FAST;
|
|
$config['PSpellShell.aspell'] = '/usr/bin/aspell';
|
|
$config['PSpellShell.tmp'] = '/tmp';
|
|
|
|
// Windows PSpellShell settings
|
|
//$config['PSpellShell.aspell'] = '"c:\Program Files\Aspell\bin\aspell.exe"';
|
|
//$config['PSpellShell.tmp'] = 'c:/temp';
|
|
?>
|