omg
omg

Reputation: 139842

how to turn off these PHP warnings?

run.php is just a normal PHP file:

[root@www4 robot]# php run.php 
No log handling enabled - turning on stderr logging
Cannot find module (HOST-RESOURCES-MIB): At line 0 in (none)
Cannot find module (HOST-RESOURCES-TYPES): At line 0 in (none)
Cannot find module (UCD-DISKIO-MIB): At line 0 in (none)
Cannot find module (TCP-MIB): At line 0 in (none)
Cannot find module (UDP-MIB): At line 0 in (none)
Cannot find module (MTA-MIB): At line 0 in (none)
Cannot find module (NETWORK-SERVICES-MIB): At line 0 in (none)
Cannot find module (LM-SENSORS-MIB): At line 0 in (none)
Cannot find module (IP-MIB): At line 0 in (none)
Cannot find module (IF-MIB): At line 0 in (none)
Cannot find module (SNMPv2-MIB): At line 0 in (none)
Cannot find module (SNMPv2-SMI): At line 0 in (none)
Cannot find module (NOTIFICATION-LOG-MIB): At line 0 in (none)
Cannot find module (DISMAN-EVENT-MIB): At line 0 in (none)
Cannot find module (DISMAN-SCHEDULE-MIB): At line 0 in (none)
Cannot find module (UCD-SNMP-MIB): At line 0 in (none)
Cannot find module (UCD-DEMO-MIB): At line 0 in (none)
Cannot find module (SNMP-TARGET-MIB): At line 0 in (none)
Cannot find module (NET-SNMP-AGENT-MIB): At line 0 in (none)
Cannot find module (SNMP-FRAMEWORK-MIB): At line 0 in (none)
Cannot find module (SNMP-MPD-MIB): At line 0 in (none)
Cannot find module (SNMP-USER-BASED-SM-MIB): At line 0 in (none)
Cannot find module (SNMP-VIEW-BASED-ACM-MIB): At line 0 in (none)
Cannot find module (SNMP-COMMUNITY-MIB): At line 0 in (none)
Cannot find module (IPV6-ICMP-MIB): At line 0 in (none)
Cannot find module (IPV6-MIB): At line 0 in (none)
Cannot find module (IPV6-TCP-MIB): At line 0 in (none)
Cannot find module (IPV6-UDP-MIB): At line 0 in (none)
Cannot find module (IP-FORWARD-MIB): At line 0 in (none)
Cannot find module (NET-SNMP-EXTEND-MIB): At line 0 in (none)
Cannot find module (UCD-DLMOD-MIB): At line 0 in (none)
Cannot find module (SNMP-NOTIFICATION-MIB): At line 0 in (none)
Cannot find module (SNMPv2-TM): At line 0 in (none)
Cannot find module (NET-SNMP-VACM-MIB): At line 0 in (none)

Upvotes: 5

Views: 12383

Answers (6)

bnson
bnson

Reputation: 222

Reason have by PHP extensions. You try:

Open Setup PHP file.
In setting PHP extensions removed extensions below:
   - PostgreSQL
   - Shared Memo....
   - SNMP
   - SOAP
   - SQLite
   - SQLite 3

Reference: http://blog.vnlives.net/2013/10/php-bug-no-log-handling-enabled-turning.html

Upvotes: 2

Mike David
Mike David

Reputation: 11

If this is a windows setup you can go to add/remove programs (or program features) and do a change in the PHP program and under choose item to install make sure you deselect extention SNMP and other extentions you don't need.

Finish the installer wizard. After that do an iisreset.

Upvotes: 1

zhekanax
zhekanax

Reputation: 1258

I've just turned off snmp extension

Upvotes: 6

TravisO
TravisO

Reputation: 9540

When something gives you errors, the worst approach is to just "turn them off". If the emergency light turns on in your car dashboard, do you go get it services or do you unscrew the light bulbs?!

Upvotes: 2

Andrew
Andrew

Reputation: 1873

According to this post, you don't have the proper SNMP management information bases installed. Install the correct package for your linux distribution, something like net-snmp.

Upvotes: 6

MiffTheFox
MiffTheFox

Reputation: 21555

It seems that your php.ini file is misconfigured to load modules that don't exist.

Upvotes: 0

Related Questions