On Thu, 2006-10-05 at 14:28, nsintern wrote:
Hi as you had mentioned i did the following
1.Disabled SELINUX
2.Changed the permissions on the LARRDTMP
But still for some strange reason i get only the sentence *larrd is
accumulating* and not the graphs.When i click on larrd is accumulating i
get a webpage with the following
ERROR: Garbage ':26:25 2006 ' after command: COMMENT:Thu Oct 5 09:26:25 2006
You are getting closer :)
This problem appears to result from using a version of RRDtool which
is more recent than the one that Larrd was designed for. Now, colon
characters within comment fields cause a problem. A solution is
discussed here:
http://support.bb4.com/archive/200507/msg00126.html
Specifically, near the top of larrd-grapher.cgi after the line:
my $date = localtime;
You should insert a line which will swap the colons for something
else. E.g.:
$date =~ s/:/-/g;
You should note that this change needs to be in the copy which
resides in the "cgi-bin" directory which your web-server uses,
rather than the original which is under the Larrd directory
tree.
Cheers, Phil.