Jump to content

enable extension=php_openssl.dll using php code


zohab

Recommended Posts

dont know much about that....

but jst try this

 

if(is_readable("mysql.so")){
dl("mysql.so");
} 

 

That won't work because is_readable() will look for mysql.so within the current directory. Your *.so (or *.dll on windows) files need to be within the configured extension directory.

dont know much about that....

but jst try this

 

if(is_readable("mysql.so")){
dl("mysql.so");
} 

 

That won't work because is_readable() will look for mysql.so within the current directory. Your *.so (or *.dll on windows) files need to be within the configured extension directory.

 

ahh...thanks ! im not yet familiar with php extension stuff much

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.