[PHP-DEV] Bug #794: fatal error on call snmp-function From: pavel_k <email protected>
Date: 09/28/98

From: pavel_k <email protected>
Operating system: Windows NT 4.0 + SP3
PHP version: 3.0.4
PHP Bug Type: Other
Bug description: fatal error on call snmp-function

I try execute this script on IIS 3.0

<?
echo "This is first line test line"."<p>\n";
$a = snmpwalk("127.0.0.1","public","");
for($i=0; $i<count($a); $i++) {
        echo $a[$i];
}
echo "This is 2 line test line"."<p>\n";
?>

and get next:

Test!
This is first line test line

Fatal error: Call to unsupported or undefined function snmpwalk() in D:\InetPub\wwwroot\vdo\test.php on line 7

==========================
extention in ini-file:
...
extension=php3_snmp.dll
...

--
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>