After getting the templates imported successfully I was getting the
following error in the cacti logs:
Every derived table must have its own alias

turns out there is a syntax error in the ss_squeeze_played.php file:

where ifnull(lastplayed,0)>unix_timestamp()-TIME_TO_SEC(CURTIME()))

was the culprit, adding a left parenthesis in front of "unix" fixed it
(which is what you have posted in this thread above):

where ifnull(lastplayed,0)>(unix_timestamp()-TIME_TO_SEC(CURTIME()))  

Now everything is working beautifully! Thanks for your effort on this.


-- 
jania
------------------------------------------------------------------------
jania's Profile: http://forums.slimdevices.com/member.php?userid=184
View this thread: http://forums.slimdevices.com/showthread.php?t=61105

_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to