Search found 7 matches

by rune
Mon Aug 25, 2014 9:52 am
Forum: Help: General
Topic: Cacti - Validation error on new graph
Replies: 28
Views: 13836

Re: Cacti - Validation error on new graph

thanks!
by rune
Tue Aug 19, 2014 2:26 pm
Forum: Help: General
Topic: Cacti - Validation error on new graph
Replies: 28
Views: 13836

Re: Cacti - Validation error on new graph

nudge
by rune
Tue Jul 29, 2014 2:50 pm
Forum: Help: General
Topic: Cacti - Validation error on new graph
Replies: 28
Views: 13836

Re: Cacti - Validation error on new graph

Well the good new is you're running into the same issue I described, the bad news is you should have been all set by commenting out that bit I referred to earlier. Can you paste the first 100 lines or so from the function form_actions() inside /usr/share/cacti/site/graphs.php? Sure. Anything that m...
by rune
Wed Jul 23, 2014 8:59 am
Forum: Help: General
Topic: Cacti - Validation error on new graph
Replies: 28
Views: 13836

Re: Cacti - Validation error on new graph

You must have a typo, it's blank screening because PHP found a syntax error. Try running the php from the command line like: php /usr/share/cacti/site/lib/html_validate.php Look for missing semi-colons, unclosed brackets, etc. got it. sorry. result: --- input_validate_input_number Value: tr_1 Valid...
by rune
Fri Jul 18, 2014 4:10 pm
Forum: Help: General
Topic: Cacti - Validation error on new graph
Replies: 28
Views: 13836

Re: Cacti - Validation error on new graph

Try going into /usr/share/cacti/site/lib/html_validate.php In there you'll see a few small functions for validation, each of them ends with: die_html_input_error(); Prior to that line add a couple debug lines like this: function input_validate_input_number($value) { if ((!is_numeric($value)) &&...
by rune
Thu Jul 17, 2014 3:10 pm
Forum: Help: General
Topic: Cacti - Validation error on new graph
Replies: 28
Views: 13836

Re: Cacti - Validation error on new graph

This is the bit I commented out in graphs.php: function form_actions() { global $colors, $graph_actions; /* ================= input validation ================= */ //input_validate_input_number(get_request_var_post('drp_action')); /* ==================================================== */ Thanks, b...
by rune
Thu Jul 17, 2014 2:30 pm
Forum: Help: General
Topic: Cacti - Validation error on new graph
Replies: 28
Views: 13836

Re: Cacti - Validation error on new graph

I am having the same issue on Debian 7 (64bit) after most recent package update. Anyone?