I have a library written in C that gets distributed as a PHP extension, and my users are having problems accessing the library when running in a Shared Hosting environment.
Previously (In PHP versions less that 5.2.5) our customers could simply use the dl() function and the full path to the library to access it.
Since PHP 5.2.5 the dl() function can not contain any path information and so the library must be installed by a System administrator in the global PHP extensions directory.
As of PHP 5.4 the dl() function has been deprecated and has been removed completely from PHP 6.0. This will mean that all libraries must be installed by a System Administrator and also loaded via the PHP.ini.
As far as I can tell this is the new reality for PHP extensions in a shared hosting environment and there are no 'work arounds'.
What are the key things I need to do with my distribution to maximise the likelihood that a Shared Host Administrator will install it on behalf of my customers?

dl()function. As a workaround you could conceivably install your own php as a cgi binary... Not that that's necessarily a good idea, but if the client can't afford at least a virtual dedicated service (as in, a dedicated system but shared hardware)... Perhaps some sort of lightweight cgi to fastcgi interface... – Inshallah Oct 1 at 1:31