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";
$projects = $path . "/data/projects.php";
$active = $path . "/data/active.php";
$sessions = $path . "/data/sessions";
$config = $path . "/config.php";
//////////////////////////////////////////////////////////////////////
@ -112,7 +113,16 @@ if (!file_exists($users) && !file_exists($projects) && !file_exists($active)) {
$project_data = array("name"=>$project_name,"path"=>$project_path);
saveJSON($projects, array($project_data));
/**
* Create sessions path.
*/
if ( ! is_dir( $sessions ) ) {
mkdir( $sessions, 770 );
}
//////////////////////////////////////////////////////////////////
// Create Users file
//////////////////////////////////////////////////////////////////

View File

@ -170,6 +170,8 @@ class updater {
function update() {
$sessions = "../../data/sessions";
echo "<script>document.getElementById('progress').innerHTML = '<p class=\"status_box\">Downloading latest version ... </p>';</script>";
if ( ! $this->download() ) {
@ -186,6 +188,17 @@ class updater {
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_folder = $this->path . "/codiad-master";
$dest = $this->path . "/";