install test 2

This commit is contained in:
xiaomlove
2021-01-27 19:38:07 +08:00
parent 59b7e573a2
commit c4ecaa0793
2 changed files with 7 additions and 6 deletions
+5 -6
View File
@@ -2,7 +2,6 @@
namespace Nexus\Install; namespace Nexus\Install;
use http\Exception\InvalidArgumentException;
use Nexus\Database\DB; use Nexus\Database\DB;
class Install class Install
@@ -351,7 +350,7 @@ class Install
'status' => 'confirmed', 'status' => 'confirmed',
'added' => date('Y-m-d H:i:s'), 'added' => date('Y-m-d H:i:s'),
]; ];
$this->doLog("insert user: " . json_encode($insert)); $this->doLog("[CREATE ADMINISTRATOR] " . json_encode($insert));
return DB::insert('users', $insert); return DB::insert('users', $insert);
} }
@@ -389,11 +388,11 @@ class Install
} }
$fp = @fopen($envFile, 'w'); $fp = @fopen($envFile, 'w');
if ($fp === false) { if ($fp === false) {
throw new \RuntimeException("can't open env file, make sure php has permission to create file at: " . ROOT_PATH); throw new \RuntimeException("can't create env file, make sure php has permission to create file at: " . ROOT_PATH);
} }
fwrite($fp, $content); fwrite($fp, $content);
fclose($fp); fclose($fp);
$this->doLog("create env file: $envFile with content: \n $content"); $this->doLog("[CREATE ENV] $envFile with content: \n $content");
return true; return true;
} }
@@ -414,7 +413,7 @@ class Install
public function createTable(array $createTable) public function createTable(array $createTable)
{ {
foreach ($createTable as $table => $sql) { foreach ($createTable as $table => $sql) {
$this->doLog("create table: $table \n $sql"); $this->doLog("[CREATE TABLE] $table \n $sql");
sql_query($sql); sql_query($sql);
} }
return true; return true;
@@ -440,7 +439,7 @@ class Install
if ($linkResult === false) { if ($linkResult === false) {
throw new \RuntimeException("can't not make symbolic link: $linkName -> $path"); throw new \RuntimeException("can't not make symbolic link: $linkName -> $path");
} }
$this->doLog("success make symbolic link: $linkName -> $path"); $this->doLog("[CREATE SYMBOLIC LINK] success make symbolic link: $linkName -> $path");
} }
return true; return true;
} }
+2
View File
@@ -1,4 +1,6 @@
<?php <?php
ini_set('error_reporting', E_ALL);
ini_set('display_errors', 0);
if (!session_id()) { if (!session_id()) {
session_start(); session_start();
} }