ds78662302 2015-07-24 22:14
浏览 118
已采纳

move_uploaded_file没有写入服务器,没有返回任何内容

I am trying to store a file, along with a few text fields, from an HTML form to my web server. The text is being written absolutely fine, however nothing is happening with the image. I have checked for errors, and none are showing up. The image is also being received in the email. I believe the permissions are fine too - they are exactly the same on /img/gallery/ and /img/gallery/data/.

Here is my PHP for the form:

<?php
include 'loadImages.php';
require_once('class.phpmailer.php');

$name = $_POST['name'];
$email = $_POST['email'];
$location = $_POST['location'];
$desc = $_POST['desc'];

/**
 * PHPMailer simple file upload and send example
 */
$msg = '';
if (array_key_exists('userfile', $_FILES)) {
    // First handle the upload
    // Don't trust provided filename - same goes for MIME types
    // See http://php.net/manual/en/features.file-upload.php#114004 for more thorough upload validation
    $uploadfile = tempnam(sys_get_temp_dir(), sha1($_FILES['userfile']['name']));
    if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
        // Upload handled successfully
        // Now create a message
        // This should be somewhere in your include_path
        require 'PHPMailerAutoload.php';
        $mail = new PHPMailer;
        $mail->setFrom('gallery@####.co.uk', 'Website');
        $mail->addAddress('gallery@####.co.uk');
        $mail->Subject = 'Image Submission Recieved';
        $mail->msgHTML("<b>Name</b>: $name<br><b>Email</b>: $email<br><b>Location</b>: $location<br><b>Description</b>: $desc");
        // Attach the uploaded file
        $mail->addAttachment($uploadfile, 'Image');
        if (!$mail->send()) {
            $msg = "Mailer Error: " . $mail->ErrorInfo;
        } else {
            $msg = "Your message has been sent.";
        }
    } else {
        $msg = 'Failed to move file to ' . $uploadfile;
    }

    $date = date('Y-m-d_H-i-s');

    $path = $_SERVER['DOCUMENT_ROOT'].'/img/gallery/data/';
    $filename = $date.".txt";

    $file = fopen($path.$filename, "w") or die("Something went wrong storing your photo information");
      fwrite($file, $name . "
");
      fwrite($file, $location . "
");
      fwrite($file, $desc . "
");
      fwrite($file, $email . "
");
      fwrite($file, "Valid: False");
    fclose($file);

    $name = $_FILES['userfile']['name'];
    $path = $_SERVER['DOCUMENT_ROOT'].'/img/gallery/';
    $filename = $date . "." . pathinfo($name, PATHINFO_EXTENSION);

    $target = $path . $filename;
    echo $target;

    echo move_uploaded_file( $_FILES['userfile']['tmp_name'], $target);
}

$images = loadImages();
$imageData = LoadImageData();
?>

$_FILES:

1Array ( [userfile] => Array ( [name] => hairy sun.jpg [type] => image/jpeg [tmp_name] => /tmp/phpWweCkX [error] => 0 [size] => 49526 ) )

If you need to see anything else, I will upload it.

  • 写回答

2条回答 默认 最新

  • droos02800 2015-07-24 22:24
    关注

    shift this,

    $date = date('Y-m-d_H-i-s');
    
    $path = $_SERVER['DOCUMENT_ROOT'].'/img/gallery/data/';
    $filename = $date.".txt";
    
    $file = fopen($path.$filename, "w") or die("Something went wrong storing your photo information");
      fwrite($file, $name . "
    ");
      fwrite($file, $location . "
    ");
      fwrite($file, $desc . "
    ");
      fwrite($file, $email . "
    ");
      fwrite($file, "Valid: False");
    fclose($file);
    
    $name = $_FILES['userfile']['name'];
    $path = $_SERVER['DOCUMENT_ROOT'].'/img/gallery/';
    $filename = $date . "." . pathinfo($name, PATHINFO_EXTENSION);
    
    $target = $path . $filename;
    echo $target;
    
    echo move_uploaded_file( $_FILES['userfile']['tmp_name'], $target);
    

    above this code,

    if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
    

    Then try again.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测