Jump to content

Uploading problems


eludlow

Recommended Posts

I've a php upload script I've used many times on hosted servers, but I've just tried it on my Ubuntu machine and I cannot get it working.

 

The script is:

 

PHP Code:

$uploaddir = '/var/www/intranet/uploaded_files/';
$uploadfile = $uploaddir . $_FILES['filename']['name'];

if (move_uploaded_file($_FILES['filename']['tmp_name'], $uploadfile)) {
    echo "File is valid, and was successfully uploaded.\n";
} else {
    echo "File not uploaded - " . $_FILES['filename']['error'] . "\n";
} 

 

In my phpinfo() the settings for uploads are as follows:

 

file_uploads: on

upload_max_filesize: 2M

upload_tmp_dir: no value

 

I'm wondering should upload_tmp_dir be set? I would guess it defaults to /tmp if it's not set. /tmp is CHMODed to 777, as is /var/www/intranet/uploaded_files/

 

$_FILES['filename']['error'] is not outputting anything.

 

I've been playing with this for an hour or so now...and am stumped! Any help appreciated.

 

Thanks,

Ed Ludlow

Link to comment
https://forums.phpfreaks.com/topic/118072-uploading-problems/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.