Hi, i have a problem when my php parse a file.php
I have the file.php from an unix machine. It use the dl function to load a file.so or a file.dll
The file.php was
<?
dl('php_ming.so');
...
?>
And i changed it by
<?
dl('php_ming.dll');
...
?>
When i use it from an unix machine, it works and when i use it with my PC windows 2000, php4 and apache server, it says the next error:
Fatal error: dl() is not supported in multithreaded Web servers - use extension statements in your php.ini in
I added in my php.ini the line
extensions = php_ming.dll
I restarted my apache server, it works well until i parse the file.php...
Any help ?????