I just changed the permission on fu folder to 777 but it gives me the
same problem. I'm writing this script so that I can use it to upload to
jpeg files. The code is hereby attached.

Bunmi

Gabriel Peugnet wrote:
For the message:

Warning: move_uploaded_file(./ayservenet.jpg): failed to open stream:
Permission denied in /home/ayserve/public_html/fu/fuprocess.php on line 6


you have to change the permissions of the file folder where you are copying
the file.
If you created it via FTP then you can't use copy() or move().

check:
echo fileperms( $folder );
if it's 33188 or 33279 it's ok but I think it is not the permission of your
folder.
I think you'll get 17901 or some other.
so you have to use ftp_chmod() of ftp_site() to change it..

try this:

$folderbase = "folderbase";     // it's the folder where your folder for
uploads is.
$folder = "foldername";            // it's your folder for uploads.
$mode = "0777";

$site = ftp_connect ( "ftp.yourdomain.com" );
    if( $site != FALSE ) {

$loged = ftp_login( $site , "your username", "your password" );

if( $loged ) {

                ftp_chdir( $site , $folder );
                ftp_site( $site , "chmod $mode $folder" );

}

ftp_quit( $site );


"John W. Holmes" <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED]

Bunmi Akinmboni wrote:


Pls Help.
I have done a lot of reading prior to this yet I just can't seem make it
work. I wrote an upload program as seen below but the response I got

was:


Possible file upload attack. Filename: ayservenet.jpg Array ( [ufile1]
=> Array ( [name] => ayservenet.jpg [type] => image/pjpeg [tmp_name] =>
/tmp/phpIMEhdh [error] => 0 [size] => 3030 ) )

[snip]


if (is_uploaded_file($_FILES['ufile1']['name'])) {
   copy($_FILES['ufile1']['name'], ".");
   echo "$ufile1_name ";
   echo "DONE";
   echo " ";
   print_r($_FILES);
} else {
   echo "Possible file upload attack. Filename: " .
$_FILES['ufile1']['name'];
   echo " ";
   print_r($_FILES);
}
?>

You should pass $_FILES['ufile1']['tmp_name'] to is_uploaded_file().


--
---John Holmes...

Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/

php|architect: The Magazine for PHP Professionals – www.phparch.com



-- 'Bunmi Akinmboni 5, Aibu Street, Off Bode Thomas Street, P.O. Box 6235, Surulere, Lagos, NIGERIA. Tel: (234) 1-813-3335 Fax: (234) 1-583-2585 (Nigeria Only) Fax: 1 (309) 285-2383 (International) Email: [EMAIL PROTECTED] Web site: http://www.budelak.com http://www.ayserve.net

Web Design, Web Hosting, Domain Registration, ICT Consultancy,
Networking, Internet, eCommerce, System Integrator
===================================================



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

Reply via email to