Dan Hammer wrote: > That addition worked.
Yes! Oh please let this be the definitive fix for this issue. > That allowed for the module to be completed. I added the config info into >httpd.conf and attempted to start apache. The server started but I got this error >message... > > PHP Warning: Unable to load dynamic library './midgard.so' - ./midgard.so: cannot >open shared object file: No such file or directory in Unknown on line 0 > > Is this one easy? Yes. When PHP installs it sets the extension_dir in php.ini to './' which is a totally unreasonable default. Most php users will not in fact compile their own (non-admin installed) extension, and 'php-config --extension-dir' suggests where to install extensions when you're compiling them. Set the extension_dir to the return value of that and you should be good to go. Emile --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
