php_enchant not loadable

php_enchant not loadable

am 20.08.2009 15:40:32 von Rene Bartholomay

Hi there,

i switch to PHP5.3 and now PSPELL is no more working. I read the docu
and found that i must use PHP_Enchant from now.

But everytime i try to use is PHP gets an error:

"Unable to load dynamic library 'C:\PHP\ext\php_enchant.dll' - The
specified module could not be found"

All other extension are loaded. The extension is in the defined
extension-dir and the settings in php.ini are ok.

I run PHP on Windows XP Prof... Any ideas?

Bye..

--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: php_enchant not loadable

am 21.08.2009 15:41:29 von klaus triendl

"Rene Bartholomay" schrieb im Newsbeitrag
news:67.0A.10097.3525D8A4@pb1.pair.com...
> Hi there,
>
> i switch to PHP5.3 and now PSPELL is no more working. I read the docu and
> found that i must use PHP_Enchant from now.
>
> But everytime i try to use is PHP gets an error:
>
> "Unable to load dynamic library 'C:\PHP\ext\php_enchant.dll' - The
> specified module could not be found"
>
> All other extension are loaded. The extension is in the defined
> extension-dir and the settings in php.ini are ok.

Does the module depend on other DLLs?


Klaus Triendl



--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: php_enchant not loadable

am 21.08.2009 15:59:55 von Niel Archer

> Hi there,
>
> i switch to PHP5.3 and now PSPELL is no more working. I read the docu
> and found that i must use PHP_Enchant from now.
>
> But everytime i try to use is PHP gets an error:
>
> "Unable to load dynamic library 'C:\PHP\ext\php_enchant.dll' - The
> specified module could not be found"
>
> All other extension are loaded. The extension is in the defined
> extension-dir and the settings in php.ini are ok.

Where did you get the extension file? The enchant extension is not
supplied with PHP 5.3. It is available from PECL according to its
documentation, but as no windows versions of these extensions have been
available since PHP 5.2.7 or so. Any version you have is probably
incorrect unless you compiled it yourself.

> I run PHP on Windows XP Prof... Any ideas?
>
> Bye..
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>

--
Niel Archer



--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: Re: php_enchant not loadable

am 21.08.2009 16:12:43 von Richard Quadling

--001517402a426ae19a0471a77723
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

2009/8/21 klaus triendl

> "Rene Bartholomay" schrieb im Newsbeitrag
> news:67.0A.10097.3525D8A4@pb1.pair.com...
> > Hi there,
> >
> > i switch to PHP5.3 and now PSPELL is no more working. I read the docu a=
nd
> > found that i must use PHP_Enchant from now.
> >
> > But everytime i try to use is PHP gets an error:
> >
> > "Unable to load dynamic library 'C:\PHP\ext\php_enchant.dll' - The
> > specified module could not be found"
> >
> > All other extension are loaded. The extension is in the defined
> > extension-dir and the settings in php.ini are ok.
>
> Does the module depend on other DLLs?
>
>
> Klaus Triendl
>
>
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
"This version uses the functions of the » Enchant
library by
Dom Lachowicz. You need Enchant 1.2.4 or later." [1]
Regards,

Richard.

[1] http://docs.php.net/manual/en/enchant.requirements.php

--=20
-----
Richard Quadling
"Standing on the shoulders of some very clever giants!"
EE : http://www.experts-exchange.com/M_248814.html
Zend Certified Engineer : http://zend.com/zce.php?c=3DZEND002498&r=3D213474=
731
ZOPA : http://uk.zopa.com/member/RQuadling

--001517402a426ae19a0471a77723--

Re: php_enchant not loadable

am 21.08.2009 16:34:22 von Elizabeth M Smith

Niel Archer wrote:
>> Hi there,
>>
>> i switch to PHP5.3 and now PSPELL is no more working. I read the docu
>> and found that i must use PHP_Enchant from now.
>>
>> But everytime i try to use is PHP gets an error:
>>
>> "Unable to load dynamic library 'C:\PHP\ext\php_enchant.dll' - The
>> specified module could not be found"
>>
>> All other extension are loaded. The extension is in the defined
>> extension-dir and the settings in php.ini are ok.
>
> Where did you get the extension file? The enchant extension is not
> supplied with PHP 5.3. It is available from PECL according to its
> documentation, but as no windows versions of these extensions have been
> available since PHP 5.2.7 or so. Any version you have is probably
> incorrect unless you compiled it yourself.
>
>> I run PHP on Windows XP Prof... Any ideas?
>>
>> Bye..
>>
>> --
>> PHP Windows Mailing List (http://www.php.net/)
>> To unsubscribe, visit: http://www.php.net/unsub.php
>>
>
> --
> Niel Archer
>
>

Actually that is incorrect - enchant is available for PHP 5.3 on windows
but ONLY for the version compiled with VC9 - it is NOT available and
cannot be used with VC6 (and so mod_php with apache)

there is a libenchant.dll included in the distribution that PHP must be
able to find - easy way to do this is to put your PHP folder in your
windows PATH

Thanks,
Elizabeth Smith

--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: php_enchant not loadable

am 21.08.2009 18:33:27 von Rene Bartholomay

Am 21.08.09 16:34, schrieb Elizabeth M Smith:
> Niel Archer wrote:
>>> Hi there,
>>>
>>> i switch to PHP5.3 and now PSPELL is no more working. I read the docu
>>> and found that i must use PHP_Enchant from now.
>>>
>>> But everytime i try to use is PHP gets an error:
>>>
>>> "Unable to load dynamic library 'C:\PHP\ext\php_enchant.dll' - The
>>> specified module could not be found"
>>>
>>> All other extension are loaded. The extension is in the defined
>>> extension-dir and the settings in php.ini are ok.
>>
>> Where did you get the extension file? The enchant extension is not
>> supplied with PHP 5.3. It is available from PECL according to its
>> documentation, but as no windows versions of these extensions have been
>> available since PHP 5.2.7 or so. Any version you have is probably
>> incorrect unless you compiled it yourself.
>>
>>> I run PHP on Windows XP Prof... Any ideas?
>>>
>>> Bye..
>>>
>>> --
>>> PHP Windows Mailing List (http://www.php.net/)
>>> To unsubscribe, visit: http://www.php.net/unsub.php
>>>
>>
>> --
>> Niel Archer
>>
>>
>
> Actually that is incorrect - enchant is available for PHP 5.3 on windows
> but ONLY for the version compiled with VC9 - it is NOT available and
> cannot be used with VC6 (and so mod_php with apache)
>
> there is a libenchant.dll included in the distribution that PHP must be
> able to find - easy way to do this is to put your PHP folder in your
> windows PATH
>
> Thanks,
> Elizabeth Smith


The PHP-Folder is in the windows PATH of the machine. I try everything:

- put the libenchant.dll in the folders C:\, C:\Windows and
C:\Windows\system32
- put the extension to the end of the extension list in php.ini
(dependencies!?)
- try the snapshot PHP5.3 and a older PHP5.3 RCn
- try another machine

Nothing works. The error is everytime the same:

"Unable to load dynamic library 'C:\PHP\ext\php_enchant.dll' - The
specified module could not be found"

In my opinion the extension-file is corrupt... Or something is missing.
The error message is not clear...


Or did anyone this run on windows without errors?


Bye, René









--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: php_enchant not loadable

am 22.08.2009 01:36:34 von Niel Archer

> Niel Archer wrote:
> >> Hi there,
> >>
> >> i switch to PHP5.3 and now PSPELL is no more working. I read the docu
> >> and found that i must use PHP_Enchant from now.
> >>
> >> But everytime i try to use is PHP gets an error:
> >>
> >> "Unable to load dynamic library 'C:\PHP\ext\php_enchant.dll' - The
> >> specified module could not be found"
> >>
> >> All other extension are loaded. The extension is in the defined
> >> extension-dir and the settings in php.ini are ok.
> >
> > Where did you get the extension file? The enchant extension is not
> > supplied with PHP 5.3. It is available from PECL according to its
> > documentation, but as no windows versions of these extensions have been
> > available since PHP 5.2.7 or so. Any version you have is probably
> > incorrect unless you compiled it yourself.
> >
> >> I run PHP on Windows XP Prof... Any ideas?
> >>
> >> Bye..
> >>
> >> --
> >> PHP Windows Mailing List (http://www.php.net/)
> >> To unsubscribe, visit: http://www.php.net/unsub.php
> >>
> >
> > --
> > Niel Archer
> >
> >
>
> Actually that is incorrect - enchant is available for PHP 5.3 on windows
> but ONLY for the version compiled with VC9 - it is NOT available and
> cannot be used with VC6 (and so mod_php with apache)

Thanks for the further info. I have not used the VC9 builds at all, so
was unaware of that.

> there is a libenchant.dll included in the distribution that PHP must be
> able to find - easy way to do this is to put your PHP folder in your
> windows PATH

Hopefully I'm just too tired, but I can't parse the first half of this.
I assume you are referring to VC9 builds only.

> Thanks,
> Elizabeth Smith
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>

--
Niel Archer



--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: php_enchant not loadable

am 24.08.2009 20:06:12 von Rene Bartholomay

i can´t believe that i am the only one person who needs this. Please
send me a Mail when somebody has run this combination whithout the
described errors...

So i go back to PHP 5.2.x - PHP 5.3 is unusable for me...

really disappointed...


--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: Re: php_enchant not loadable

am 25.08.2009 10:42:53 von Richard Quadling

2009/8/24 Rene Bartholomay :
> i can´t believe that i am the only one person who needs this. Please=
send me
> a Mail when somebody has run this combination whithout the described
> errors...
>
> So i go back to PHP 5.2.x  - PHP 5.3 is unusable for me...
>
> really disappointed...
>
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

Have you tried building the external libraries?



--=20
-----
Richard Quadling
"Standing on the shoulders of some very clever giants!"
EE : http://www.experts-exchange.com/M_248814.html
Zend Certified Engineer : http://zend.com/zce.php?c=3DZEND002498&r=3D213474=
731
ZOPA : http://uk.zopa.com/member/RQuadling

--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: Re: php_enchant not loadable

am 25.08.2009 14:03:17 von Richard Quadling

2009/8/25 Michael Tacelosky :
> No, that's the problem, I don't want to install the compiler and such.
>  I keep hoping that http://pecl4win.php.net/ will come back, it was =
a
> great resource.
>
> On Tue, Aug 25, 2009 at 4:42 AM, Richard
> Quadling wrote:
>> 2009/8/24 Rene Bartholomay :
>>> i can´t believe that i am the only one person who needs this. Plea=
se send me
>>> a Mail when somebody has run this combination whithout the described
>>> errors...
>>>
>>> So i go back to PHP 5.2.x  - PHP 5.3 is unusable for me...
>>>
>>> really disappointed...
>>>
>>>
>>> --
>>> PHP Windows Mailing List (http://www.php.net/)
>>> To unsubscribe, visit: http://www.php.net/unsub.php
>>>
>>>
>>
>> Have you tried building the external libraries?
>>
>>
>>
>> --
>> -----
>> Richard Quadling
>> "Standing on the shoulders of some very clever giants!"
>> EE : http://www.experts-exchange.com/M_248814.html
>> Zend Certified Engineer : http://zend.com/zce.php?c=3DZEND002498&r=3D213=
474731
>> ZOPA : http://uk.zopa.com/member/RQuadling
>>
>> --
>> PHP Windows Mailing List (http://www.php.net/)
>> To unsubscribe, visit: http://www.php.net/unsub.php
>>
>>
>

Now that VC9 is the official MS compiler version, you still have TS vs
NTS. You also need HEAD/PHP53/PHP52. So for the current 227 extensions
in pecl, that results in a 1,362 builds. Now, if other compilers ARE
needed (older Apache must have VC6), then that double to 2,724. Oh. I
forgot x64, so 5,448 builds.

That's a LOT of processing. In addition, there may be branches within
the extension itself.

No matter how you look at it, there is a lot of work to do.

Got some time to help out? :-)




--=20
-----
Richard Quadling
"Standing on the shoulders of some very clever giants!"
EE : http://www.experts-exchange.com/M_248814.html
Zend Certified Engineer : http://zend.com/zce.php?c=3DZEND002498&r=3D213474=
731
ZOPA : http://uk.zopa.com/member/RQuadling

--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: Re: php_enchant not loadable

am 25.08.2009 15:57:16 von Rene Bartholomay

Am 25.08.09 10:42, schrieb Richard Quadling:

> Have you tried building the external libraries?

no, i am not firm enough to build php complete. Perhaps you can make a
running php_enchant.dll?

Bye, René

--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: Re: php_enchant not loadable

am 25.08.2009 16:29:51 von Michael Tacelosky

What does that mean "older Apache"? I'm using what I think is the
latest build of Apache, and it's MUCH easier to replace my apache
installation than compile PHP or pecl extensions.

I suspect many people who need PHP for Windows do so mostly for their
development environment, then upload the code to Linux boxes for
production. I can live without thread-safe extensions, I can upgrade
Apache, but some extensions are critical (namely http_get). Since
they've always been available with each PHP upgrade, it's never been a
problem, I've always grabbed the pecl zip file the same time I grabbed
the PHP zip file, and treated it as a two-step install. (if PEAR were
periodically zipped up or available in svn, I would probably use it as
well, as it is I find PEAR terribly difficult to use).

I guess I had assumed that compiling the extensions was done in a big
batch. If I had 5.3 extensions available, I'd gladly share them. (I
paid for the development of php_swish.dll, and then had it added to
the pecl repository,but alas, I never compiled it myself).

Tac


On Tue, Aug 25, 2009 at 8:03 AM, Richard
Quadling wrote:
> 2009/8/25 Michael Tacelosky :
>> No, that's the problem, I don't want to install the compiler and such.
>> =A0I keep hoping that http://pecl4win.php.net/ will come back, it was a
>> great resource.
>>
>> On Tue, Aug 25, 2009 at 4:42 AM, Richard
>> Quadling wrote:
>>> 2009/8/24 Rene Bartholomay :
>>>> i can=B4t believe that i am the only one person who needs this. Please=
send me
>>>> a Mail when somebody has run this combination whithout the described
>>>> errors...
>>>>
>>>> So i go back to PHP 5.2.x =A0- PHP 5.3 is unusable for me...
>>>>
>>>> really disappointed...
>>>>
>>>>
>>>> --
>>>> PHP Windows Mailing List (http://www.php.net/)
>>>> To unsubscribe, visit: http://www.php.net/unsub.php
>>>>
>>>>
>>>
>>> Have you tried building the external libraries?
>>>
>>>
>>>
>>> --
>>> -----
>>> Richard Quadling
>>> "Standing on the shoulders of some very clever giants!"
>>> EE : http://www.experts-exchange.com/M_248814.html
>>> Zend Certified Engineer : http://zend.com/zce.php?c=3DZEND002498&r=3D21=
3474731
>>> ZOPA : http://uk.zopa.com/member/RQuadling
>>>
>>> --
>>> PHP Windows Mailing List (http://www.php.net/)
>>> To unsubscribe, visit: http://www.php.net/unsub.php
>>>
>>>
>>
>
> Now that VC9 is the official MS compiler version, you still have TS vs
> NTS. You also need HEAD/PHP53/PHP52. So for the current 227 extensions
> in pecl, that results in a 1,362 builds. Now, if other compilers ARE
> needed (older Apache must have VC6), then that double to 2,724. Oh. I
> forgot x64, so 5,448 builds.
>
> That's a LOT of processing. In addition, there may be branches within
> the extension itself.
>
> No matter how you look at it, there is a lot of work to do.
>
> Got some time to help out? :-)
>
>
>
>
> --
> -----
> Richard Quadling
> "Standing on the shoulders of some very clever giants!"
> EE : http://www.experts-exchange.com/M_248814.html
> Zend Certified Engineer : http://zend.com/zce.php?c=3DZEND002498&r=3D2134=
74731
> ZOPA : http://uk.zopa.com/member/RQuadling
>

--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: php_enchant not loadable

am 25.08.2009 17:37:18 von Richard Quadling

2009/8/20 Rene Bartholomay :
> Hi there,
>
> i switch to PHP5.3 and now PSPELL is no more working. I read the docu and
> found that i must use PHP_Enchant from now.
>
> But everytime i try to use is PHP gets an error:
>
> "Unable to load dynamic library 'C:\PHP\ext\php_enchant.dll' - The specif=
ied
> module could not be found"
>
> All other extension are loaded. The extension is in the defined
> extension-dir and the settings in php.ini are ok.
>
> I run PHP on Windows XP Prof...   Any ideas?
>
> Bye..
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

I've just updated the documentation for this. May take a couple of
hours before http://docs.php.net/manual/en/enchant.requirements.php
gets updated.


--=20
-----
Richard Quadling
"Standing on the shoulders of some very clever giants!"
EE : http://www.experts-exchange.com/M_248814.html
Zend Certified Engineer : http://zend.com/zce.php?c=3DZEND002498&r=3D213474=
731
ZOPA : http://uk.zopa.com/member/RQuadling

--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: php_enchant not loadable

am 25.08.2009 17:44:40 von Richard Quadling

2009/8/25 Richard Quadling :
> 2009/8/20 Rene Bartholomay :
>> Hi there,
>>
>> i switch to PHP5.3 and now PSPELL is no more working. I read the docu an=
d
>> found that i must use PHP_Enchant from now.
>>
>> But everytime i try to use is PHP gets an error:
>>
>> "Unable to load dynamic library 'C:\PHP\ext\php_enchant.dll' - The speci=
fied
>> module could not be found"
>>
>> All other extension are loaded. The extension is in the defined
>> extension-dir and the settings in php.ini are ok.
>>
>> I run PHP on Windows XP Prof...   Any ideas?
>>
>> Bye..
>>
>> --
>> PHP Windows Mailing List (http://www.php.net/)
>> To unsubscribe, visit: http://www.php.net/unsub.php
>>
>>
>
> I've just updated the documentation for this. May take a couple of
> hours before http://docs.php.net/manual/en/enchant.requirements.php
> gets updated.
>
>
> --
> -----
> Richard Quadling
> "Standing on the shoulders of some very clever giants!"
> EE : http://www.experts-exchange.com/M_248814.html
> Zend Certified Engineer : http://zend.com/zce.php?c=3DZEND002498&r=3D2134=
74731
> ZOPA : http://uk.zopa.com/member/RQuadling
>

Enchant also requires » Glib 2.6 or greater. Pre-compiled Windows
libraries are available from »
http://ftp.gnome.org/pub/gnome/binaries/win32/glib/.

--=20
-----
Richard Quadling
"Standing on the shoulders of some very clever giants!"
EE : http://www.experts-exchange.com/M_248814.html
Zend Certified Engineer : http://zend.com/zce.php?c=3DZEND002498&r=3D213474=
731
ZOPA : http://uk.zopa.com/member/RQuadling

--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: Re: php_enchant not loadable

am 26.08.2009 02:10:32 von Niel Archer

>
> Now that VC9 is the official MS compiler version, you still have TS vs
> NTS. You also need HEAD/PHP53/PHP52. So for the current 227 extensions
> in pecl, that results in a 1,362 builds. Now, if other compilers ARE
> needed (older Apache must have VC6), then that double to 2,724. Oh. I
> forgot x64, so 5,448 builds.

What do you mean "older Apache must have VC6"? When did they change
that, and where is the info to be found?
I've been waiting for an official notice from Apache that they have
changed the version, so that I can put PHP 5.3 on my dev box. As it is,
I see no mention on the site to say what the binaries are built with,
only that VC6 or later is required to compile yourself.

> --
> -----
> Richard Quadling
> "Standing on the shoulders of some very clever giants!"
> EE : http://www.experts-exchange.com/M_248814.html
> Zend Certified Engineer : http://zend.com/zce.php?c=ZEND002498&r=213474731
> ZOPA : http://uk.zopa.com/member/RQuadling
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>

--
Niel Archer



--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: Re: php_enchant not loadable

am 26.08.2009 08:38:26 von Lester Caine

Niel Archer wrote:
>> Now that VC9 is the official MS compiler version, you still have TS vs
>> NTS. You also need HEAD/PHP53/PHP52. So for the current 227 extensions
>> in pecl, that results in a 1,362 builds. Now, if other compilers ARE
>> needed (older Apache must have VC6), then that double to 2,724. Oh. I
>> forgot x64, so 5,448 builds.
>
> What do you mean "older Apache must have VC6"? When did they change
> that, and where is the info to be found?
> I've been waiting for an official notice from Apache that they have
> changed the version, so that I can put PHP 5.3 on my dev box. As it is,
> I see no mention on the site to say what the binaries are built with,
> only that VC6 or later is required to compile yourself.

Nothing has changed, only how the windows builds of PHP are now
'managed' ... http://windows.php.net/download/ left hand column.

Anything that is included now in a PHP windows build has to have been
built with the same version of VC, so many third party extensions are no
longer available to windows users. This purely relates to php, and while
the basic reason behind it does have a little sense, nothing has changed
between PHP5.2 and PHP5.3 that would actually prevent properly
configured import libraries using dissimilar versions of VC from being
used - it is only the php windows build team that have decided that this
is not allowed, and that all new windows builds require everything that
php links to is build using VC9.

Third party builds of both Apache and PHP are available for x64 versions
of windows for example and these do not follow the same over zealous
restrictions ....

--
Lester Caine - G8HFL
-----------------------------
Contact - http://lsces.co.uk/wiki/?page=contact
L.S.Caine Electronic Services - http://lsces.co.uk
EnquirySolve - http://enquirysolve.com/
Model Engineers Digital Workshop - http://medw.co.uk//
Firebird - http://www.firebirdsql.org/index.php

--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: Re: php_enchant not loadable

am 26.08.2009 20:19:32 von Niel Archer

> Niel Archer wrote:
> >> Now that VC9 is the official MS compiler version, you still have TS vs
> >> NTS. You also need HEAD/PHP53/PHP52. So for the current 227 extensions
> >> in pecl, that results in a 1,362 builds. Now, if other compilers ARE
> >> needed (older Apache must have VC6), then that double to 2,724. Oh. I
> >> forgot x64, so 5,448 builds.
> >
> > What do you mean "older Apache must have VC6"? When did they change
> > that, and where is the info to be found?
> > I've been waiting for an official notice from Apache that they have
> > changed the version, so that I can put PHP 5.3 on my dev box. As it is,
> > I see no mention on the site to say what the binaries are built with,
> > only that VC6 or later is required to compile yourself.
>
> Nothing has changed, only how the windows builds of PHP are now
> 'managed' ... http://windows.php.net/download/ left hand column.
>
> Anything that is included now in a PHP windows build has to have been
> built with the same version of VC, so many third party extensions are no
> longer available to windows users. This purely relates to php, and while
> the basic reason behind it does have a little sense, nothing has changed
> between PHP5.2 and PHP5.3 that would actually prevent properly
> configured import libraries using dissimilar versions of VC from being
> used - it is only the php windows build team that have decided that this
> is not allowed, and that all new windows builds require everything that
> php links to is build using VC9.


Yeah, I knew all that from following win-internals, and it's why I've
been waiting for an announcement from Apache.
The OP implies that newer versions of Apache use VC9 (well, that they
do not need VC6).

> Third party builds of both Apache and PHP are available for x64 versions
> of windows for example and these do not follow the same over zealous
> restrictions ....

I'm also aware of these. As much as I would like a 64 bit version of
Apache and PHP 5.3 on my Win2K3 server, I will have to live with the 32
bit versions until 64 bit versions are officially available. I have to
be conservative for my servers and use official builds as I do not have
the time, or know how, to do it myself.

> --
> Lester Caine - G8HFL
> -----------------------------
> Contact - http://lsces.co.uk/wiki/?page=contact
> L.S.Caine Electronic Services - http://lsces.co.uk
> EnquirySolve - http://enquirysolve.com/
> Model Engineers Digital Workshop - http://medw.co.uk//
> Firebird - http://www.firebirdsql.org/index.php
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>

--
Niel Archer



--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

SOLVED :Re: php_enchant not loadable

am 01.09.2009 12:49:12 von Rene Bartholomay

Hi there,

today i found the reason for this. As Richard Quadling described
php_enchant needs GLIB:

> Enchant also requires » Glib 2.6 or greater. Pre-compiled Windows
> libraries are available from »
> http://ftp.gnome.org/pub/gnome/binaries/win32/glib/.


You need also
http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/e nchant-1.4.2-tml.zip

And a Windows Registry Entry is needed! Without this you get no error
Message!! I don´t know why...


[HKEY_LOCAL_MACHINE\SOFTWARE\Enchant\Config]
"Module_Dir"="C:\\Programme\\PHP\\"


After that create a new directory in the PHP-Directory
C:\Programme\PHP\Share\enchant\myspell and copy your prefered dictionary
in it.

The copy libenchant_myspell.dll in the PHP Directory.

After IIS-Reset all works fine here...


Regards,

René

--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php