Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is that possible and if it is, how to do that? I'm asking because dl() function is not available to me and because PHP team is abandoning this function from further versions.

Please do not answer "Use the Extension Loading Directives instead" - that is exactly the part which I do not understand how and I would like to/I'm asking about.

Thanks in advance!

share|improve this question
1  
@greenV There's always the chance that a friendly email to your server admins would get them to install the extension needed, worth a try – Dale Dec 8 '12 at 9:01
@Dale, and even if I HAVE access to php.ini I could not install extension without that email to server admins? – greenV Dec 8 '12 at 9:08
possible duplicate of PHP 5.3+ enable_dl not enabling dl()? – Charles Dec 8 '12 at 9:08
@greenV probably not with your attitude no! – Dale Dec 8 '12 at 9:24

closed as not constructive by NullPoiиteя, Charles, tereško, j0k, NikiC Dec 8 '12 at 13:48

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

The function has been removed from all SAPIs other than CLI and Embedded as of PHP 5.3. SAPIs are the interface between PHP and a web server / the CLI / etc.

It is no longer possible to load extensions at run-time in some cases. There are no other options available to you if you find your current SAPI does not support runtime extension loading.

If you need an extension loaded reliably, you should do so in the proper place in the system configuration. No amount of saying "that is not the answer I want" will change reality.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.