[PHP-DEV] Bug #875: unable to load SNMP module From: nemeth_zoltan <email protected>
Date: 10/26/98

From: nemeth_zoltan <email protected>
Operating system: Win NT 4.0
PHP version: 3.0.5
PHP Bug Type: Dynamic loading related
Bug description: unable to load SNMP module

if I write some stupi script like:

------------------------
<?
  dl ( "php3_dbase.dll" );
  dl ( "php3_snmp.dll" );

  echo "<html><head><title>SNMP test</title></head><body>";
  $a = snmpwalk ( "XXX.xxx.XXX.xxx", "some", "" );
  for ( $i=0; $i<count($a); $i++ )
    echo "$a[i]<br>";
  echo "</body></html>";
?>
------------------------

the script says:

   Fatal error: Unable to load dynamic library 'c:/php3/php3_snmp.dll'
   The specified module could not be found. in C:\InetPub\wwwroot\og.php on line 3

Of course, the file is on it's right place...

--
PHP Development Mailing List   http://www.php.net/
To unsubscribe send an empty message to php-dev-unsubscribe <email protected>
For help: php-dev-help <email protected>