dl() funtion not defined

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
deshmukh999
Forum Commoner
Posts: 32
Joined: Mon Mar 15, 2010 2:01 am

dl() funtion not defined

Post by deshmukh999 »

hi,

I am using xampp1.7.2
when i am trying to load .dll file . below erro displayed
Warning: dl() [function.dl]: Not supported in multithreaded Web servers


I am trying to load user defined dll file using this function .
Please help me to resolve this error.

Suggest me lto load user defined .dll library file.
User avatar
flying_circus
Forum Regular
Posts: 732
Joined: Wed Mar 05, 2008 10:23 pm
Location: Sunriver, OR

Re: dl() funtion not defined

Post by flying_circus »

deshmukh999 wrote:hi,

I am using xampp1.7.2
when i am trying to load .dll file . below erro displayed
Warning: dl() [function.dl]: Not supported in multithreaded Web servers


I am trying to load user defined dll file using this function .
Please help me to resolve this error.

Suggest me lto load user defined .dll library file.
Install the non-thread safe version of PHP? If you're running the thread safe version of PHP, and dl() isnt compatible, there isnt much you can do. You can manually load the extension by defining the extension in the php.ini, but you'll need to reboot your web server to make it active.
Post Reply