Updated Install and update script to create sessions path.

This commit is contained in:
xevidos 2018-07-24 08:56:42 -04:00
parent e16617d6c2
commit fbd9c144ef
2 changed files with 24 additions and 1 deletions

View file

@ -18,6 +18,7 @@
$users = $path . "/data/users.php"; $users = $path . "/data/users.php";
$projects = $path . "/data/projects.php"; $projects = $path . "/data/projects.php";
$active = $path . "/data/active.php"; $active = $path . "/data/active.php";
$sessions = $path . "/data/sessions";
$config = $path . "/config.php"; $config = $path . "/config.php";
////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////
@ -113,6 +114,15 @@ if (!file_exists($users) && !file_exists($projects) && !file_exists($active)) {
saveJSON($projects, array($project_data)); saveJSON($projects, array($project_data));
/**
* Create sessions path.
*/
if ( ! is_dir( $sessions ) ) {
mkdir( $sessions, 770 );
}
////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////
// Create Users file // Create Users file
////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////

View file

@ -170,6 +170,8 @@ class updater {
function update() { function update() {
$sessions = "../../data/sessions";
echo "<script>document.getElementById('progress').innerHTML = '<p class=\"status_box\">Downloading latest version ... </p>';</script>"; echo "<script>document.getElementById('progress').innerHTML = '<p class=\"status_box\">Downloading latest version ... </p>';</script>";
if ( ! $this->download() ) { if ( ! $this->download() ) {
@ -186,6 +188,17 @@ class updater {
echo "<script>document.getElementById('progress').innerHTML = '<p class=\"status_box\">Updating ... </p>';</script>"; echo "<script>document.getElementById('progress').innerHTML = '<p class=\"status_box\">Updating ... </p>';</script>";
//Add Sessions path if not there.
/**
* Create sessions path.
*/
if ( ! is_dir( $sessions ) ) {
mkdir( $sessions, 770 );
}
$src = $this->path . "/codiad-master/"; $src = $this->path . "/codiad-master/";
$src_folder = $this->path . "/codiad-master"; $src_folder = $this->path . "/codiad-master";
$dest = $this->path . "/"; $dest = $this->path . "/";