mirror of
https://github.com/xevidos/codiad.git
synced 2024-11-10 21:26:35 +01:00
Updated Install and update script to create sessions path.
This commit is contained in:
parent
e16617d6c2
commit
fbd9c144ef
@ -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
|
||||
//////////////////////////////////////////////////////////////////
|
||||
|
@ -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 . "/";
|
||||
|
Loading…
Reference in New Issue
Block a user