I am working on a server with limited permissions and certainly not acces to /usr/local/php4 so I can't copy extentions there. I would like to load php_ming.so via dl() but from what I see I can only load stuff from the php-config extention_dir.
Is there a way to get around this. could I do...
dl("../../../home/httpd/mysite/directory/php_ming.so");
Is there another way to load stuff without using the normal dir?
andy