Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So I'm having an issue. When someone signs up for an account on the site I'm building, they go to a setup page where they can upload a profile picture. I'm using mkdir to auto create a sub-folder with their username which is working fine, and CHMOD is 777 on that sub folder. The problem I'm having is that image is not being moved to that specified sub-folder, but it's going into the "uploads" folder which is it's parent directory.

Hopefully I haven't confused anyone, but I'm really needing help.

Below is my script I wrote to do this.

===============================================================================

require_once('../admin/includes/config.php');

$uploaded_file = $_REQUEST['uploaded_file'];
$member_id = $_REQUEST['member_id'];
$name = $_REQUEST['name'];
$location = $_REQUEST['location'];
$hobbies = $_REQUEST['hobbies'];
$hobby = $_REQUEST['hobby'];

// using member_id, extract the username from the members table so we can auto create a sub-directory for the images

$result = mysql_query("SELECT username FROM members WHERE member_id = '$member_id'");

while($row = mysql_fetch_array($result))
  {
  $username = $row['username'];
  }

// unmask to change CHMOD of newly created sub directory to 777
$old_mask = umask(0);

//Create directory with member's username

$madedir = mkdir('../admin/uploads/'.$username.'', 0777) /*== TRUE ? 1 : 0*/;
umask($old_mask);


// Assign the directory the file is going to be uploaded to

$uploaddir = '../admin/uploads/'.$username.'';


// Get the file name

$file_name = $_FILES['uploaded_file']['name']; 


// Upload file to assigned directory with file name

$uploadfile = $uploaddir . basename($_FILES['uploaded_file']['name']);


// If the file has been uploaded, run this script

if (move_uploaded_file($_FILES['uploaded_file']['tmp_name'], $uploadfile)) {

echo "Success";
} // end if
else {
echo "there was an error uploading your file"; 
}
share|improve this question
1  
What language is this written in? – David Harris Jul 13 '10 at 15:57
Looks like Perl ? – Paul R Jul 13 '10 at 16:00
1  
More like PHP to me – streetpc Jul 13 '10 at 16:02

1 Answer

You seem to be missing a / at the end of the upload directory. Change this:

$uploaddir = '../admin/uploads/'.$username.'';

to this:

$uploaddir = '../admin/uploads/'.$username.'/';
share|improve this answer
woot thank you so much! :) – Eddie Sep 4 '10 at 20:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.