I'm working in my site which is in zen cart, actually a want to add a little fuctionality on it, and that is.... When i upload a image for a product i also want to create a thumbnail size of that image to be in a folder. Now i tried to search a file where the code to upload image goes on.. i found a file in htdocs/admin_folder/includes/modules/new_product_preview.php

Now after getting details from user from a page htdocs/admin_folder/product.php it form post it in new_product_review.php page with a action defind in it and here the code for uploading image i've just simply added code as follows but it is not uploading the image in folder.

I've tried to echo the name of the file, so i've just put the alert for the image name parameters, i'm getting the $_FILES["products_image"]["tmp_name"] as something like, /tmp/gsnVaX.. like but when i check $_FILES["products_image"]["name"] it gives the correct name of the file...

why its not putting the image in temporary folder ? when i put the resize code on it then it saves image in my folder with the same size which i wanted but whole image is just blank black. Code is

$image = "../images/thumbs/anki_".$_FILES["products_image"]["name"]; 
move_uploaded_file($_FILES["products_image"]["tmp_name"],$image);

and code when i'm doing this through resize is-

                    $control = "products_image";
        $fileName = $_FILES[$control]['name'];
        $uploadedfile = $_FILES[$control]['tmp_name'];
        echo "<script>alert('".$fileName."');</script>";
        $exts = explode(".",$fileName);
        $ext = array_pop($exts);
        $uploadedfile = $_FILES[$control]['name'];
        $extension = $ext;
        $extension = strtolower($extension);
        if($extension=="jpg" || $extension=="jpeg" )
        {
            $src = imagecreatefromjpeg($uploadedfile);
        }
        else if($extension=="png")
        {
            $src = imagecreatefrompng($uploadedfile);
        }
        else
        {
            $src = imagecreatefromgif($uploadedfile);
        }

        $newwidth = 140;

        list($width,$height)=getimagesize($uploadedfile);
        $newheight=($height/$width)*$newwidth;
        $newheight = 135;
        $tmp=imagecreatetruecolor($newwidth,$newheight);
                imagecopyresampled($tmp,$src,0,0,0,0,$newwidth,$newheight,$width,$height);
        $filename = "../images/thumbs/". $fileName;
        imagejpeg($tmp,$filename,100);
        imagedestroy($src);
        imagedestroy($tmp);

Please suggest me what i'm doing wrong with it its very urgent please help me out from this...

link|improve this question

['tmp_name'] can end up empty if an upload error occured. Check if ['error'] is 0. If it's not it will contain a code describing the error that occurred. See the PHP docs on file uploading for what each code emans. – GordonM Dec 21 '11 at 14:22
Have you tried the Image Handler 2 contribution? It does what you need (and much more) pretty well: zen-cart.com/… – AJweb Jan 11 at 10:37
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.