Hello cowboy,
Welcome to the AmpJuke forum and thanks for posting.
Your question about the cron stuff has been answered earlier
in this thread in the forum.
It's a fairly long thread, but the bottom line is that a minor, hard-coded modification of 'scan.php' is needed (there's even some code to copy+paste).
kanna did the last modification.
You mentioned something about a report...
I don't actually remember if that was a part of the solution in the above mentioned thread.
However, two things are needed:
1. Redirect the output of your cron-job to a file (maybe
appending the output of 'scan.php' to a textfile somewhere).
2. Alter the following in 'scan.php' (around line 314):
- Code: Select all
// Step 8: If errors: Print them.
if (($error_flag!=0) && ($error_flag!=5) && ($print_details=="1")) {
...to...
- Code: Select all
// Step 8: If errors: Print them.
if (($error_flag!=0) && ($error_flag!=5)) {
...basically eliminating the check for $print_details (=errors will be printed no matter what).
Hope all of this info. helps to make progress (dunno what your exact 'level' of expertise is within PHP)..
Should you run into any kind of trouble in relation to this, please update this thread (well...feel free to do so in any case...) and I'll try to help you out in order to the the cron stuff to work on your box.
//Michael.
P.S. And hey:
Thanks for the nice words about AmpJuke - it's really appreciated
