[PHP-DEV] Bug #794 Updated: fatal error on call snmp-function From: Bug Database (php-dev <email protected>)
Date: 09/28/98

ID: 794
User Update by: pavel_k <email protected>
Status: Open
Bug Type: Other
Description: fatal error on call snmp-function

I try execute this script on IIS 3.0

<html>
<body>
Test!<p>

<?
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";

?>

Test!<p>
</body>
</html>

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

Full Bug description available at: http://ca.php.net/bugs.php3?id=794

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