Re: Help/Advice/Suggestions need to Upload 9 images on one submit button.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Tue, Jan 28, 2003 at 10:44:47PM +0100, Geckodeep wrote:

>Hi Rajesh
>
>
>
>First of all I'd like to thank you for your time.

No hassles.

>
>I got the script working in a way that it feeds my DB table, but I am
>getting this error message: Warning: copy() [function.copy]: Unable to
>access in upload1.php on line 28.
>
>this is what I have in the 28th line :
>if(!copy($_FILES['img_name1']['tmp_name'],
>"./repor_images/$_FILES['img_name1']['tmp_name']")):;

I have never come across the above error message. It looks like copy
function is not allowed on the webserver.

>
>for the moment I am trying it with one field and I am waiting to see if it's
>working, and  I'll had the rest with the Captions to go with the images.
>
>One thing I've forgot to say is though in my database instead of just having
>the name of the image copied from the source (Form Field) I have the whole
>path in the field (  /var/www/12/1/7/-/site/www/php1PWwsF  ), is it normal
>or what?.

In my application, I am uploading the file and than creating a thumbnail
from it and storing both image as well as thumbnail in mysql blob field.

if (!is_uploaded_file($_FILES['Imagefile1']['tmp_name']))
{
    $sErrorStr .= "Error Uploading File: '$Imagefile1'." .
                  " Either the File Type is Invalid or some connectivity problem, Check out" ;
}
else
{
    $imgtype = $_FILES['Imagefile1']['type'];
    copy($_FILES['Imagefile1']['tmp_name'], './tmp/downloadedfile1.jpg');
    $filename = './tmp/downloadedfile1.jpg';
    create_thumbnail($filename, $imgtype, $escaped_image, $escaped_thumbnail);
}

>
>I've looked up in the PhpManual for copy() and it says it takes two
>arguments, in that case if I did put it in this way will it work
>copy($img_name1,"/repor_images/$id.$img_name1"); // $img_name1 as the source
>and "repor_images/$id.$img_name1" as the destination,

Should work.

>I also have few questions.
>
>Does that mean I have to have 9 copy functions as above, and just change the
>"img_nameX"?.

Yes. 

>
>Do I have to mention File size and file type for all the file Fields in the
>form or will it be ok just to mention once just above the submit button?.

I feel it is required for all the fields. More experienced souls on the
list, please comment.


Peace

--
Rajesh
:
####[ GNU/Linux One Stanza Tip (LOST) ]#######################
  
Sub : Spell check within Mutt                        LOST #157

If you have the ispell package  (interactive spelling checker)
installed, and maybe your preferred dictionary file iamerican,
ibritish (whatever), press "i" after finishing composition and
prior to sending mail (under mutt) ... 

####<kumarayil@eth.net>#######################################
:

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [PHP Users]     [Postgresql Discussion]     [Kernel Newbies]     [Postgresql]     [Yosemite News]

  Powered by Linux