Hi,
Does anyone have any information or a guide to setting up enchant properly with 5.3.8, I know it comes with 5.3.8 but it still requires glib libraries and a dictionary, both of which i have, but there is, as far as I can see, no proper guide to install including path directories or proper set-up, except to enable the enchant dll in php.ini and get the glib libraries, but no information is given on path info anywhere that i can see.
Running
Win Server 2008 R2 x64 php 5.3.8 VC9
Fatal error: Call to undefined function enchant_broker_init() in C:\inetpub\wwwroot\myspelltest.php on line 2
first step fails, so far from what little i can gather from searching, I have all the correct dll's in correct paths, but still not sure of proper paths for glib and dictionaries. Which i have in the PHP dir \Share\enchant\MySpell
<?php
$r = enchant_broker_init();
$dicts = enchant_broker_list_dicts($r);
print_r($dicts);
?>
All help welcome, as I am getting little fed up wasting precious time with this, especially as the PHP manual page says....
Enchant is the PHP binding for the » Enchant library. Enchant steps in to provide uniformity and conformity on top of all spelling libraries, and implement certain features that may be lacking in any individual provider library. Everything should "just work" for any and every definition of "just working."
Hope it is something simple....like myself
WFB