|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2009-02-20 11:12 UTC] esigners_daily at yahoo dot com
Description: ------------ <?php ob_start(); set_time_limit(30); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> <?php $pspell_link = pspell_new("en"); if (pspell_check($pspell_link, "testt")) { echo "This is a valid spelling"; } else { echo "Sorry, wrong spelling"; } ?> <a href="#">click</a> </body> </html> <?php ob_end_flush(); ?> PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 03 04:00:02 2025 UTC |
This bug is set to a "No Feedback" status right now which doesn't seem to mean it is not open ... a pre-cursor to my comments :) I am quite certain it the issue here is the aspell binary running on the Windows platform. The latest version of the bundled aspell dll in the PHP Windows distribution fails with the following Application error code when executing a script via the Apache http server: Faulting application httpd.exe, version 2.2.8.0, faulting module aspell-15.dll, version 0.0.0.0, fault address 0x0008cef6. I tested this on Apache 2.2.10.0 and PHP 5.2.8 for Windows with the same results. Running a script from the command line: php -f pspell.php returns a similar error: Faulting application php.exe, version 5.2.9.9, faulting module aspell-15.dll, version 0.0.0.0, fault address 0x0008cef2. Here we attempted to use the latest Windows 5.2.9.9 download unsuccessfully.