You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$validerror .= "<br><strong>Cannot connect the the database using the supplied information.</strong>";
}
echo"Success!<br>";
flush();
//Validate that the config directories are writable
echo"Checking config folder permissions...";
flush();
if (!is_writable(dirname('../../includes/functions.php')))
{
$validerror .= "<br><strong>Cannot write the configuration files. Please check the /includes/ folder permissions. See the RPints Installation page on www.raspberrypints.com.</strong>";
}
if (!is_writable(dirname('../../admin/includes/checklogin.php')))
{
$validerror .= "<br><strong>Cannot write the configuration files. Please check the /admin/includes/ folder permissions. See the RPints Installation page on www.raspberrypints.com.</strong>";
}
echo"Success!<br>";
flush();
//##TODO## Check if administrator account already exists
//Display errors and die
if ($validerror !='')
{
echo"<html><body>";
echo$validerror;
echo"<br /><br />Please press the back button on your browser to fix these errors";