Hey need help configuring a script

Need help installing PHP, configuring a script, or configuring a server? Then come on in and post your questions! We'll try to help the best we can!

Moderator: General Moderators

Post Reply
liaspelman
Forum Newbie
Posts: 2
Joined: Wed Feb 13, 2008 9:48 am

Hey need help configuring a script

Post by liaspelman »

Hey first of all this is my website... http://liam.spelman.pspower.co.uk
This is the code its for a file upload i got it to work but i cant work out how to add more extensions to allow....
Oh and the file has been uploaded i want it to be redirected to a page.

Thanks

Code: Select all

<?php
//?heck that we have a file
if((!empty($_FILES["uploaded_file"])) && ($_FILES['uploaded_file']['error'] == 0)) {
  //Check if the file is JPEG image and it's size is less than 350Kb
  $filename = basename($_FILES['uploaded_file']['name']);
  $ext = substr($filename, strrpos($filename, '.') + 1);
  if (($ext == "jpg") && ($_FILES["uploaded_file"]["type"] == "image/jpeg") && 
    ($_FILES["uploaded_file"]["size"] < 3500000000000000)) {
    //Determine the path to which we want to save this file
      $newname = dirname(__FILE__).'/upload/'.$filename;
      //Check if the file with the same name is already exists on the server
      if (!file_exists($newname)) {
        //Attempt to move the uploaded file to it's new place
        if ((move_uploaded_file($_FILES['uploaded_file']['tmp_name'],$newname))) {
           echo "It's done! The file has been saved as: ".$newname;
        } else {
           echo "Error: A problem occurred during file upload!";
        }
      } else {
         echo "Error: File ".$_FILES["uploaded_file"]["name"]." already exists";
      }
  } else {
     echo "Error: Only .jpg images under 350Kb are accepted for upload";
  }
} else {
 echo "Error: No file uploaded";
}
?>
 
User avatar
liljester
Forum Contributor
Posts: 400
Joined: Tue May 20, 2003 4:49 pm

Re: Hey need help configuring a script

Post by liljester »

try replacing

Code: Select all

 $ext = substr($filename, strrpos($filename, '.') + 1);
  if (($ext == "jpg") && ($_FILES["uploaded_file"]["type"] == "image/jpeg") && 
    ($_FILES["uploaded_file"]["size"] < 3500000000000000)) {
with this:

Code: Select all

 
$ext = substr($filename, -4, 4);
if ( ( ($ext == ".jpg") || ($ext == ".png") ) && ($_FILES["uploaded_file"]["size"] < 350000) ) {
for the extensions you want, just add more " || ($ext = ".extension")" to the if statement
liaspelman
Forum Newbie
Posts: 2
Joined: Wed Feb 13, 2008 9:48 am

Re: Hey need help configuring a script

Post by liaspelman »

Legend it worked!!!
Post Reply