Im running php as an Apache Module. I set up the php.ini to load some extensions I have created.
'entension=foo.so'
...
Through a strace I view the extension modules being loaded after the php module when apache starts up, however when I when I run a script from the site, the extensions no longer appear to be loaded.
To make sure my php.ini file was correct, I ran the same script as a cgi, rather than a module, in this case the dynamic libraries are loaded correctly and I am able to use them.
Do I need to set up something different with apache or php to use the extensions in a module. ??
Thanks for any help.