I am trying to install a 3rd party PHP extension (.so) into PHP 5.3.6-13 on Ubuntu 11.10 and use it in a web environment. The vendor\'s documentation suggests using the
This function has been removed from some SAPIs in PHP 5.3. -- dl()
So if you have the ini setting enable_dl
set to on
and it still does not work, then it is disabled in the SAPI you use.
If you wonder which SAPIs are meant, the changelog on that same page is more detailed:
The only SAPIs that allow
dl()
are CLI and Embed.
You are not using any of these two. Instead use the Extension Loading Directives and you're fine.