doulachan8217 2014-06-26 16:22
浏览 56
已采纳

PHP文件上传到NGINX和PHP5-FPM

I am uploading a file to my server and getting the following log, and after a lot of googling I cannot find an answer can any one help or suggest where to start?

2014/06/26 17:15:01 [error] 15035#0: *2491 FastCGI sent in stderr: "PHP message: height: 375 - width: 600" while reading response header from upstream, client: , server: url, request: "POST /user/updateProfile HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "url", referrer: "url/user/edit/7"

I have hidden the url's for security purposes.

Thanks!

EDIT *

PHP code for upload

if(empty($_FILES['user_cover_image_url']['name'])) {
        } else {
            //Cover Elements
            $coverName = $_FILES['user_cover_image_url']['name'];
            $coverExtension=end(explode(".", $coverName));
            if($coverExtension=='png') {$coverExtension = 'jpg';}
            $cName = $uid.'-'.$pass->generateRandomString($length=25);
            $coverImage = $cName.'.'.$coverExtension;
            $cSource = $_FILES['user_cover_image_url']['tmp_name'];
            $cDestination = '/var/www/html/tmp/cover-'.uniqid().'.'.$coverExtension;
            $pass->imageresize($cSource, $cDestination, $width=600, $height=600, $crop=false, $quality=72);
            if ($s3->putObjectFile($cSource, "proaudiosocialstream", $coverImage, S3::ACL_PUBLIC_READ)) {$s3Cover ='http://bucket.s3.amazonaws.com/'.$coverImage;}else{return false;}
            $data['user_cover_image_url'] = $coverImage;
        }

        if(empty($_FILES['user_avatar_url']['name'])) {
        } else {
            //Avatar Elements
            $avatarName = $_FILES['user_avatar_url']['name'];
            $avatarExtension=end(explode(".", $avatarName));
            if($avatarExtension=='png') {$avatarExtension = 'jpg';}
            $aName = $uid.'-'.$pass->generateRandomString($length=25);
            $avatarImage = $aName.'.'.$avatarExtension;
            $aSource = file_get_contents($_FILES['user_avatar_url']['tmp_name']);
            $aDestination = '/var/www/html/tmp/avatar-'.uniqid().'.'.$avatarExtension;
            $pass->imageresize($aSource, $aDestination, $width=400, $height=400, $crop=false, $quality=72);
            if ($s3->putObjectFile($aDestination, "proaudiosocialstream", $avatarImage, S3::ACL_PUBLIC_READ)) {$s3Avatar ='http://bucket.s3.amazonaws.com/'.$avatarImage;}else{return false;}
            $data['user_avatar_url'] = $avatarImage;
        }
  • 写回答

1条回答 默认 最新

  • dongxuan1314 2014-07-01 17:24
    关注

    I think you did not configured php-fpm with nginx

    nginx virtual host file should look like this for php-fpm

    server {
        listen   80;
        server_name www.trakleaf.in trakleaf.in;
        access_log access_file_path compression;
        error_log error_file_path;
         root   root_directory;
         index  index.html index.htm index.php;
         location / {  
                 try_files $uri $uri/ /index.php;
         }
        location ~ \.php$ {
            include /etc/nginx/fastcgi_params;
            if ($uri !~ "^/images/") {
                fastcgi_pass unix:/var/run/php5-fpm.sock;
            }
            fastcgi_index index.php;
            fastcgi_param SCRIPT_FILENAME root_directory$fastcgi_script_name;
        } 
    
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序