|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1998-12-07 09:52 UTC] shane
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 02:00:01 2025 UTC |
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...