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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.