I've got some weird message after install. I can login, Add servers, Add users and bunch of other things... but Just about every page I get some sort of error... here are some examples:
Notice: Undefined index: logmein in c:\mrtg\wwwroot\node-runner\header.php on line 11
Notice: Undefined index: description in c:\mrtg\wwwroot\node-runner\input-page.php on line 22
Notice: Undefined index: change in c:\mrtg\wwwroot\node-runner\server-list.php on line 4
Notice: Undefined index: change in c:\mrtg\wwwroot\node-runner\server-list.php on line 28
Notice: Undefined variable: view in c:\mrtg\wwwroot\node-runner\server-list.php on line 37
Notice: Undefined index: view in c:\mrtg\wwwroot\node-runner\server-list.php on line 37
Thanks for Looking! This is a fantastic tool and looks like it will helps us out a lot!!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I've got some weird message after install. I can login, Add servers, Add users and bunch of other things... but Just about every page I get some sort of error... here are some examples:
Notice: Undefined index: logmein in c:\mrtg\wwwroot\node-runner\header.php on line 11
Notice: Undefined index: description in c:\mrtg\wwwroot\node-runner\input-page.php on line 22
Notice: Undefined index: change in c:\mrtg\wwwroot\node-runner\server-list.php on line 4
Notice: Undefined index: change in c:\mrtg\wwwroot\node-runner\server-list.php on line 28
Notice: Undefined variable: view in c:\mrtg\wwwroot\node-runner\server-list.php on line 37
Notice: Undefined index: view in c:\mrtg\wwwroot\node-runner\server-list.php on line 37
Thanks for Looking! This is a fantastic tool and looks like it will helps us out a lot!!
Your php.ini is set to show you all errors, warnings and notices. Look for an "error_reporting" line. Here is mine:
error_reporting = E_ALL & ~E_NOTICE & ~E_WARNING
This specifies that I want to see everything but notices and warnings. They're usually meaningless anyway.
--Brad Fears