Browse Source

fleat:update file dir

igb 3 weeks ago
parent
commit
378cba3001
5 changed files with 5 additions and 5 deletions
  1. 1 1
      system/imgUploadFile.php
  2. 1 1
      system/pic.php
  3. 1 1
      system/picupload.php
  4. 1 1
      system/upload.php
  5. 1 1
      upload.php

+ 1 - 1
system/imgUploadFile.php

@@ -116,7 +116,7 @@ if (!isset($_FILES[$inputname])) {
 // 输出结果
 $act = $_GET['act'] ?? '';
 if ($act == 's') {
-    echo "<script>parent.document.getElementById('" . $id . "').value='/System/" . $imgurl . "';location.href='imgUpload.php';</script>";
+    echo "<script>parent.document.getElementById('" . $id . "').value='/system/" . $imgurl . "';location.href='imgUpload.php';</script>";
 } else {
     echo json_encode([
         'err' => jsonString($err),

+ 1 - 1
system/pic.php

@@ -22,7 +22,7 @@ if ($act == "postchk") {
             $id = (int)$id;
             $result = $conn->query("SELECT picurl FROM pic WHERE id = " . $id);
             if ($row = $result->fetch_assoc()) {
-                if (strpos($row['picurl'], '/System/') === 0) {
+                if (strpos($row['picurl'], '/system/') === 0) {
                     $delfile = $_SERVER['DOCUMENT_ROOT'] . $row['picurl'];
                     if (file_exists($delfile)) {
                         unlink($delfile);

+ 1 - 1
system/picupload.php

@@ -103,7 +103,7 @@ if (!isset($_FILES[$inputname])) {
                 
                 $sql = "INSERT INTO pic (cpid, picurl) VALUES (?, ?)";
                 $stmt = $conn->prepare($sql);
-                $stmt->execute([$cpid, "/System/" . $target]);
+                $stmt->execute([$cpid, "/system/" . $target]);
                 
                 header("Location: pic.php?cpid=$cpid&Page=$page&Keys=$keys&Ord=$ord");
                 exit;

+ 1 - 1
system/upload.php

@@ -85,7 +85,7 @@ if (!isset($_FILES[$inputname])) {
 
 $act = $_GET['act'] ?? '';
 if ($act == 's') {
-    echo "<script>parent.document.getElementById('ProductImg').value='/System/" . $imgurl . "';location.href='uploadfile.php';</script>";
+    echo "<script>parent.document.getElementById('ProductImg').value='/system/" . $imgurl . "';location.href='uploadfile.php';</script>";
 } else {
     echo "{'err':'" . jsonString($err) . "','msg':" . $msg . "}";
 }

+ 1 - 1
upload.php

@@ -88,7 +88,7 @@ if (!isset($_FILES[$inputName])) {
 
 // Output response
 if (isset($_GET['act']) && $_GET['act'] == 's') {
-    echo "<script>parent.document.getElementById('infoimgurl').value='/System/" . $imgurl . "';location.href='uploadfile.php'</script>";
+    echo "<script>parent.document.getElementById('infoimgurl').value='/system/" . $imgurl . "';location.href='uploadfile.php'</script>";
 } else {
     echo "{'err':'" . addslashes($err) . "','msg':" . $msg . "}";
 }