config.php 802 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * config.php
  4. *
  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. // PSpell settings
  13. $config['PSpell.mode'] = PSPELL_FAST;
  14. $config['PSpell.spelling'] = "";
  15. $config['PSpell.jargon'] = "";
  16. $config['PSpell.encoding'] = "";
  17. // PSpellShell settings
  18. $config['PSpellShell.mode'] = PSPELL_FAST;
  19. $config['PSpellShell.aspell'] = '/usr/bin/aspell';
  20. $config['PSpellShell.tmp'] = '/tmp';
  21. // Windows PSpellShell settings
  22. //$config['PSpellShell.aspell'] = '"c:\Program Files\Aspell\bin\aspell.exe"';
  23. //$config['PSpellShell.tmp'] = 'c:/temp';
  24. ?>