Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Closed Thread
If File Exists trouble
Old 07-02-2010, 08:51 PM If File Exists trouble
Skilled Talker

Posts: 83
Trades: 0
I am working on a section for users to upload a picture/avatar on their profile. I noticed that if I have two different images with the same file name, and upload both of them, the first one is overwritten. I am trying to write a script that will find if file exists, randomize a set of numbers and letters, and use those as the files' new name.

In my code below, you can see that I am trying to replace the $name variable with this new set of characters. The problem is, that the name has the extension at the end of it as well. So this would cause an issue. So depending on what type of file the user is trying to submit, the extension will be concatenated at the end of the file name, then will upload it.

I'm getting no errors, and am stuck on what to do from here. The function creates a random string of characters for the name.

PHP Code:
<?php

$upload 
$_POST['upload'];
if (
$upload)
{
    
// Name of file
$name $_FILES["image"]["name"];
    
// Type of file (video/avi) or image/jpg, etc
$type $_FILES["image"]["type"];
    
//size of file
$size $_FILES["image"]["size"];
    
//stores file in a temporary location
$temp $_FILES["image"]["tmp_name"];
    
// if there is an error
$error $_FILES["image"]["error"];
echo 
$type;
function 
genRandomString() {
    
$length 10;
    
$characters '0123456789abcdefghijklmnopqrstuvwxyz';
    
$string '';    

    for (
$p 0$p $length$p++) {
        
$string .= $characters[mt_rand(0strlen($characters))];
    }

    return 
$string;
}

if (
$error 0)
{
    
$uploaderror "An error occured. Please try again.";
}
else
{

if (
$type=="image/jpeg" || $type=="image/png" || $type=="image/gif" || $type=="image/bmp" || $type=="image/jpeg")
{
    if (
$size <= 5242880)
    {
        if(
file_exists($name)){
        
        
$name genRandomString($string);
        
         
        }
        else
        {
            
move_uploaded_file($temp"avatars/".$name);
            
$success "Upload Complete!";
        }
    }
    else{
        
$uploaderror "Your image must be less than 5 megabytes.";
    }
}
else
{
die(
"That format is not allowed!");

}
}
}
?>
<html>
<h1>Upload a File</h1>
<form action="upload.php" method="POST" enctype="multipart/form-data">
    <input type="file" name="image"><br />
    <input type="submit" name="upload" value="Upload"><br />
    <?php echo $success$uploaderror?>

</form>
</html>
Smudly is offline
View Public Profile
 
 
Register now for full access!
Old 07-02-2010, 10:00 PM Re: If File Exists trouble
mgraphic's Avatar
Truth Seeker

Latest Blog Post:
JAMISONTUNES
Posts: 2,918
Name: Keith Marshall
Location: Connecticut
Trades: 0
What about replacing the following?

PHP Code:
    if ($size <= 5242880)
    {
        if(
file_exists("avatars/".$name)){
        
        
$name genRandomString().$name;
        }
        
        
move_uploaded_file($temp"avatars/".$name);
        
$success "Upload Complete!";
    }
    else{
        
$uploaderror "Your image must be less than 5 megabytes.";
    } 
__________________

<mgraphic /> - I don't have a solution but I admire the problem.
mgraphic is offline
View Public Profile
 
Old 07-02-2010, 10:01 PM Re: If File Exists trouble
Skilled Talker

Posts: 83
Trades: 0
Thanks! It works. Appreciate your help.
Smudly is offline
View Public Profile
 
Closed Thread     « Reply to If File Exists trouble
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.11475 seconds with 12 queries