4

POSTメソッドを使用して、uploader.phpを使用して画像を処理するupload_photo.phpファイルに写真をアップロードしています。Uploader.phpは画像のサイズを変更し、古い画像を上書きします。ローカルでは正常に動作しますが、サーバーでは動作しません。

move_uploaded_filefalseを返しますが、$_FILES['uploadedfile']['error'] == 0それは私にはわかりません。

uploader.php全体とupload_photo.phpからのフォームタグを示すスニペットを投稿しました。

<?php
//This is uploader.php
session_start();
include ('dbconfig.php');
include('SimpleImage.php');

mysql_connect(HOST, USERNAME, PASSWORD);
$conn = mysql_select_db(DB_NAME);

$target_path = "uploads/";

$target_path = $target_path . renameImage();

$_SESSION['client_photo'] = $target_path;

$query = "UPDATE client ";
$query .= "SET personal_photo = ('$target_path') ";
$query .= "WHERE client_id = ".$_SESSION['clientID'];
$results = mysql_query($query) or die('Error msg: '.mysql_error().'<br/>
        sql: '.query.'<br/>');

if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) {
  $msg = "The file ".  $_SESSION['client_photo']. 
  " has been uploaded";
  chmod($target_path, "0666");
  $work = new ImgResizer($target_path); 
  $work -> resize(600, $target_path); 
} else{
  $msg = "There was an error uploading the file, please try again!";
  $msg .= $_FILES['uploadedfile']['error'];
}
header("Location: upload_photo.php?msg=$msg");

function renameImage(){ 
  mysql_connect(HOST, USERNAME, PASSWORD);
  $conn = mysql_select_db(DB_NAME);

  $sql = "SELECT first_name, last_name, client_id
          FROM client
          WHERE client_id = ".$_SESSION['clientID'];
  $res = mysql_query($sql) or die('Error msg: '.mysql_error().'<br/>
                sql: '.$sql.'<br/>');
  if($row = mysql_fetch_array($res, MYSQLI_ASSOC)){
      $_SESSION['successphoto'] = 1;
      return $row{first_name}.'_'.$row{last_name}.'_'.$row{client_id};
  }
  else{
      echo "There was an error while fetching the row.<br/>";
  }
}

class ImgResizer {
  private $originalFile = '';
  public function __construct($originalFile = '') {
      $this -> originalFile = $originalFile;
  }
  public function resize($newWidth, $targetFile) {
      if (empty($newWidth) || empty($targetFile)) {
          return false;
      }
      $src = imagecreatefromjpeg($this -> originalFile);
      list($width, $height) = getimagesize($this -> originalFile);
      $newHeight = ($height / $width) * $newWidth;
      $tmp = imagecreatetruecolor($newWidth, $newHeight);
      imagecopyresampled($tmp, $src, 0, 0, 0, 0, $newWidth, $newHeight, $width, $height);
      if (file_exists($targetFile)) {
          unlink($targetFile);
      }
      imagejpeg($tmp, $targetFile, 85); // 85 is my choice, make it between 0 – 100 for output image quality with 100 being the most luxurious
  }
}

?>

これがupload_photo.phpからのスニペットです

echo '<form enctype="multipart/form-data" action="uploader.php" method="POST">';
echo '<tr>';
//echo "<td colspan='2'>".$_GET['text']."</td>";
echo '</tr>';
echo '<tr align="center">';
echo '<td colspan="2">';
echo '<input type="hidden" name="MAX_FILE_SIZE" value="5000000" />
        Choose a file to upload: <input name="uploadedfile" type="file" accept="image/*"/><br />
        <input type="submit" value="Upload File" />
      </form>';
4

2 に答える 2

3

これはおそらく、アップロードが正常に行われたことを意味します-ファイルは一時ディレクトリにアップロードされます-しかし、ファイルは設定した宛先に移動できませんでした。

ファイルの移動先のパスを再確認し、Webユーザー(apacheまたはwwwその他)がそのディレクトリに書き込むためのアクセス許可を持っていることを確認する必要があります。

于 2012-11-16T22:11:10.530 に答える
-3

絶対にあなたは正しい道を進んでいます。以下のようにディレクトリのアクセス許可を変更するだけです。それがうまくいくことを願っています。

chmod 777 uploaded_folder_name
于 2018-05-21T09:09:49.360 に答える