diff --git a/composer.json b/composer.json
index 34d1652..0764458 100644
--- a/composer.json
+++ b/composer.json
@@ -1,10 +1,8 @@
{
"require": {
"php": ">=7.4.0",
- "ext-json": "*",
- "ext-mysqli": "*",
"friendsofphp/php-cs-fixer": "^3.49",
- "ngatngay/helper": "dev-main",
+ "ngatngay/ngatngay": "dev-main",
"sabre/dav": "dev-master"
},
"config": {
diff --git a/lib/function.php b/lib/function.php
index d1f1f8b..a9d9a31 100644
--- a/lib/function.php
+++ b/lib/function.php
@@ -3,7 +3,7 @@
use NgatNgay\Helper\Arr;
function request() {
- return NgatNgay\Helper\request();
+ return NgatNgay\request();
}
function isAppFile($dir)
@@ -1013,3 +1013,10 @@ function getIcon($type, $name) {
return '';
}
}
+
+function showBack() {
+ echo '
+
+ Trở lại
+ ';
+}
diff --git a/scan_error_log.php b/scan_error_log.php
index 1fb727c..f1ac6c4 100644
--- a/scan_error_log.php
+++ b/scan_error_log.php
@@ -1,83 +1,96 @@
-
- ul.info > li {
- white-space: normal !important;
- }
-';
-
-echo '
' . $title . '
';
-
-if (
- $dir == null
- || !is_dir(processDirectory($dir))
-) {
- echo 'Đường dẫn không tồn tại
- Chức năng
- ';
-} else {
- $dir = processDirectory($dir);
-
- echo '';
- echo '' . printPath($dir, true) . '';
- echo '
';
-
- echo 'Danh sách error_log
';
-
- $have_error = false;
- $files = readFullDir($dir, [
- 'vendor/',
- 'node_modules/'
- ]);
-
- foreach ($files as $file) {
- if ($file->getFilename() !== 'error_log') {
- continue;
- }
- if (!$file->getSize()) {
- continue;
- }
-
- if (!$have_error) {
- echo '';
- }
-
- if (!$have_error) {
- echo 'Trống
';
- }
-
- echo 'Chức năng
- ';
-}
-
-require 'footer.php';
+
+ ul.info > li {
+ white-space: normal !important;
+ }
+';
+
+echo '' . $title . '
';
+
+if (
+ $dir == null
+ || !is_dir(processDirectory($dir))
+) {
+ echo 'Đường dẫn không tồn tại
+ Chức năng
+ ';
+} else {
+ $dir = processDirectory($dir);
+
+ echo '';
+ echo '' . printPath($dir, true) . '';
+ echo '
';
+
+ echo 'Danh sách error_log
';
+
+ $have_error = false;
+ $files = readFullDir($dir, [
+ 'vendor/',
+ 'node_modules/'
+ ]);
+
+ foreach ($files as $file) {
+ if ($file->getFilename() !== 'error_log') {
+ continue;
+ }
+
+ if (isset($_POST['clear'])) {
+ unlink($file->getPathname());
+ continue;
+ }
+
+ if (!$have_error) {
+ echo '';
+ }
+
+ if (!$have_error) {
+ echo 'Trống
';
+ }
+
+ echo '';
+ echo <<<'Z'
+
+ Z;
+
+ showBack();
+}
+
+require 'footer.php';
diff --git a/version.json b/version.json
index e8fb710..67678cf 100644
--- a/version.json
+++ b/version.json
@@ -2,7 +2,7 @@
"repo": "file-manager-main",
"major": 1,
"minor": 0,
- "patch": 72,
- "version": "1.0.72",
+ "patch": 73,
+ "version": "1.0.73",
"message": "fix"
}