Page 1 of 1

xicore_eventqueue_chart not loading over https

Posted: Thu Dec 27, 2012 11:05 pm
by Mitchell
Eversince we moved to HTTPS, we could not use the "xicore_eventqueue_chart" on Admin page becasue it has hardcoded URL in "ajaxhelpers-monitoringengine.inc.php" which loads this chart directly from google.

Code: Select all

$chart_url="http://chart.apis.google.com/chart?
I tried modifying the hardcoded URL to HTTPS but seems google has a bad cert for it.
Is there a way to load this image in background and not directly by browser? I looked at a similar post here... http://support.nagios.com/forum/viewtop ... 735#p41303

Re: xicore_eventqueue_chart not loading over https

Posted: Fri Dec 28, 2012 10:30 am
by scottwilkerson
lets change

Code: Select all

$chart_url="http://chart.apis.google.com/chart?
to

Code: Select all

$chart_url="https://chart.googleapis.com/chart?
I've made the change for future versions in SVN

Re: xicore_eventqueue_chart not loading over https

Posted: Sun Jan 06, 2013 12:36 am
by Mitchell
Thanks. The new URL works great.