Replies: 1 comment
-
I bypassed the check with this edit... Next there were issues with the thumbnail directory.... I did create it manually and then discovered this "bug"
fixed by this edit.....
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Selecting any of the "archive" buttons shows the following page:
Please run the following from the 'allsky' directory before using the Website:
website/install.sh --update
I installed the website "remotely" on my NAS and uploading files works correctly,
The current image is displayed, the camera information is displayed, the overlay works was expected.
However attempting to view any of the archived files suggests running the install script... but the site is not installed on the PI
So this script file does not exist.
the check in functions.php seems to be the issue...
// If on a Pi, check that the placholder was replaced.
$isarm = preg_match("/(arm|aarch)/",php_uname());
if ($isarm && ALLSKY_CONFIG == "XX_ALLSKY_CONFIG" . "_XX") {
// This file hasn't been updated yet after installation.
echo "
echo "";
echo "Please run the following from the 'allsky' directory before using the Website:";
echo "";
echo "
website/install.sh --update
";echo "
exit;
}
Any suggestions about how to fix this?
Beta Was this translation helpful? Give feedback.
All reactions