|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-05-04 13:02 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 20 03:00:01 2025 UTC |
Description: ------------ Hi!, Platform Details PHP: PHP-4.4.2 (Downloaded zip file from us2.php.net) OS:Win2k WebServer: IIS5 Also installed these..downloaded from aspell.net/win32(C:/Aspell) Aspell-0-50-3-3-Setup.exe Aspell-en-0.50-2-3.exe my phpinfo() shows pspell PSpell Support enabled When I try to run PHP script contaning below code(partial) $path_to_personal_dictionary = dirname(__FILE__) . "/personal_dictionary/MPWordS.txt"; //If pspell doesn't exist, then include the pspell wrapper for aspell. if(!function_exists('pspell_suggest')) { // Set the path to aspell if you need to use it. define('ASPELL_BIN','/usr/bin/aspell'); require_once ("pspell_comp.php"); } // Create and configure a link to the pspell module. $pspell_config = pspell_config_create("en"); pspell_config_mode($pspell_config, PSPELL_FAST); if($usePersonalDict) { // Allows the use of a custom dictionary (Thanks to Dylan Thurston for this addition). pspell_config_personal($pspell_config, $path_to_personal_dictionary); } $pspell_link = pspell_new_config($pspell_config); //Here comes the error... Getting below error.. !!PHP Warning: PSPELL couldn't open the dictionary. reason: No word lists can be found for the language "en". in c:\inetpub\wwwroot\spell_checker\spell_checker.php on line 76 Pls suggest the possible fix here.. Thanks, Umesh Shastry Reproduce code: --------------- !!PHP Warning: PSPELL couldn't open the dictionary. reason: No word lists can be found for the language "en". in c:\inetpub\wwwroot\spell_checker\spell_checker.php on line 76 Expected result: ---------------- !!PHP Warning: PSPELL couldn't open the dictionary. reason: No word lists can be found for the language "en". in c:\inetpub\wwwroot\spell_checker\spell_checker.php on line 76 Actual result: -------------- !!PHP Warning: PSPELL couldn't open the dictionary. reason: No word lists can be found for the language "en". in c:\inetpub\wwwroot\spell_checker\spell_checker.php on line 76