Hello,
I'm having some problem with PHP and IMAP.
I have 2 versions of PHP installed on my server :
- Apache module
- CGI version
IMAP has been installed on both versions.
The problem is that it seems impossible to have IMAP work for both of them as you can see in this short explanation :
if :
extension=imap.so in php.ini
and :
;extension=imap.so in imap.ini
then :
only module version of php can use imap
if :
;extension=imap.so in php.ini
and :
extension=imap.so in imap.ini
then :
only cgi version of php can use imap
if :
;extension=imap.so in php.ini
and :
;extension=imap.so in imap.ini
then :
IMAP won't be activated on both version
if :
extension=imap.so in php.ini
and :
extension=imap.so in imap.ini
then :
IMAP will outpout errors because IMAP functions will be called twice.
Then, how am I supposed to make it work on both versions?
Thanks for helping !
I'm having some problem with PHP and IMAP.
I have 2 versions of PHP installed on my server :
- Apache module
- CGI version
IMAP has been installed on both versions.
The problem is that it seems impossible to have IMAP work for both of them as you can see in this short explanation :
if :
extension=imap.so in php.ini
and :
;extension=imap.so in imap.ini
then :
only module version of php can use imap
if :
;extension=imap.so in php.ini
and :
extension=imap.so in imap.ini
then :
only cgi version of php can use imap
if :
;extension=imap.so in php.ini
and :
;extension=imap.so in imap.ini
then :
IMAP won't be activated on both version
if :
extension=imap.so in php.ini
and :
extension=imap.so in imap.ini
then :
IMAP will outpout errors because IMAP functions will be called twice.
Then, how am I supposed to make it work on both versions?
Thanks for helping !