|
|
| Author |
Message |
twhiting9275 Beginner
Joined: 25 Mar 2004 Posts: 2 Location: Waterloo Iowa
|
Posted: Thu Mar 25, 2004 7:47 am Post subject: web interface problems |
|
|
Getting a LOT of these type of errors with php 4.3.3
| Quote: |
Notice: Undefined index: tripid in /usr/local/var/www/netmrg/webfiles/snmp_cache_view.php on line 26
Warning: Cannot modify header information - headers already sent by (output started at /usr/local/var/www/netmrg/webfiles/snmp_cache_view.php:26) in /usr/local/var/www/netmrg/webfiles/snmp_cache_view.php on line 26
|
Usually, this will come up just after I modify (add, delete, remove) a group. |
|
| Back to top |
|
 |
twhiting9275 Beginner
Joined: 25 Mar 2004 Posts: 2 Location: Waterloo Iowa
|
Posted: Thu Mar 25, 2004 8:52 am Post subject: |
|
|
Second error:
| Quote: |
Notice: Undefined index: dev_type in /usr/local/var/www/netmrg/webfiles/tests_script.php on line 44
Warning: Cannot modify header information - headers already sent by (output started at /usr/local/var/www/netmrg/webfiles/tests_script.php:44) in /usr/local/var/www/netmrg/webfiles/tests_script.php on line 45 |
Errm, is this even ready for use yet? Doesn't look like it. |
|
| Back to top |
|
 |
silfreed Site Admin
Joined: 19 Jan 2003 Posts: 394 Location: Shippensburg, PA, USA
|
Posted: Thu Mar 25, 2004 2:56 pm Post subject: |
|
|
These are very minor errors (Notices) that are coming up because you're running with full error logging on. These messages are harmless in most cases, except that they cause the Warnings because they're output before the headers can be sent.
You can modify your php.ini to add this line:
error_reporting = E_ALL & ~E_NOTICE
This will get rid of the notices (and subsequently, the warnings).
And yes, it is quite ready for use; where I work we have well over 100 devices and over 2000 monitors.
-Doug |
|
| Back to top |
|
 |
|