简体   繁体   中英

PHP File upload to 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;
        }

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;
    } 

}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM