I recently installed cvsmonitor 0.62. Perl is all up to date. and everything looks fine.
That is until, you actually try and see a module. I click checkout, and "checkout in backround" is shown.
After that nothing else happens, and the module remains "unavailable".
The most worrying thing is that there are no logs produced..
where should they go?
I have tried the latest bleeding edge version and the devel version.
all have the same problem..
Alex.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2004-02-22
Ran into the same exact problem.
For me, even though I had green light during setup for the GD* modules, it in fact wasn't installed correctly.
So I had to go back and install the GD, GD::Graph, and GD::Text via CPAN. Once those were properly installed, CVS Monitor worked along with logs and checkouts.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Alex, did the re-install of GD fix your problems? I'm having the exact same problems.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2004-09-29
Have the same problem with 0.6.3:
"CVS Monitor Administration - Log Viewer
No log files were found"
GD* packages seems installed ok:
cpan> install GD
GD is up to date.
cpan> install GD::Graph
GD::Graph is up to date.
cpan> install GD::Text
GD::Text is up to date.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2004-09-29
Fixed my problem:
It seems /var/www/cgi-bin/cvsmonitor/cvsexec.pl uses a deprecated function from File::Flat. I edited cvsexec.pl around line 117 to this:
# Make sure the directory is there
#File::Flat->_ensureDirectory( $logfile );
File::Flat->_makePath( $logfile );
I now have log files. :)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I recently installed cvsmonitor 0.62. Perl is all up to date. and everything looks fine.
That is until, you actually try and see a module. I click checkout, and "checkout in backround" is shown.
After that nothing else happens, and the module remains "unavailable".
The most worrying thing is that there are no logs produced..
where should they go?
I have tried the latest bleeding edge version and the devel version.
all have the same problem..
Alex.
Ran into the same exact problem.
For me, even though I had green light during setup for the GD* modules, it in fact wasn't installed correctly.
So I had to go back and install the GD, GD::Graph, and GD::Text via CPAN. Once those were properly installed, CVS Monitor worked along with logs and checkouts.
Alex, did the re-install of GD fix your problems? I'm having the exact same problems.
Have the same problem with 0.6.3:
"CVS Monitor Administration - Log Viewer
No log files were found"
GD* packages seems installed ok:
cpan> install GD
GD is up to date.
cpan> install GD::Graph
GD::Graph is up to date.
cpan> install GD::Text
GD::Text is up to date.
Fixed my problem:
It seems /var/www/cgi-bin/cvsmonitor/cvsexec.pl uses a deprecated function from File::Flat. I edited cvsexec.pl around line 117 to this:
# Make sure the directory is there
#File::Flat->_ensureDirectory( $logfile );
File::Flat->_makePath( $logfile );
I now have log files. :)