Vivid Lust Posted July 17, 2008 Share Posted July 17, 2008 Is there anyways to make this run faster ??? <?php $flag=false; if( $_FILES['file']['name'] != "" ) { $ourfile = $_FILES['file']['name']; $oursize = $_FILES['file']['size']; $oursize = $oursize/1000; $oursize = $oursize/1000; $oursize = round($oursize,3); $allowed = array('.jpg','.gif','.bmp'); $ext = substr($ourfile, -4); $type = $_FILES['file']['type']; $destfile = rand(1,999999999) . $_FILES['file']['name']; if(!in_array($ext, $allowed)) { $error = "<font color=red>File type not allowed</font>"; } if($oursize > 1) { $error= "<font color=red>Sorry this file is bigger than 1MB<BR></font>"; } if($error=="") { copy ( $_FILES['file']['tmp_name'], "uploads/" . $destfile ) or die( "<font color=red><B>Could not copy file. Please contact the Admin.<BR></B></font>" ); } $flag=true; } if($flag==false) { ?> Select a file to upload:<br> <form action=index.php method=post enctype=multipart/form-data onsubmit="return validate(this)"> <input type=file class=text name=file size=45> <br> <input type=submit class=text value="Upload File"> </form> <?php } if($flag==true&&$error!="") { ?> <h3>File Upload</h3> Select a file to upload:<br> <form action=index.php method=post enctype=multipart/form-data onsubmit="return validate(this)"> <input class=text type=file name=file size=45> <br> <input type=submit class=text value="Upload File"> </form> <?php print("$error"); } if($flag==true&&$error=="") { ?> File uploaded... <br><input class=text type="text" style='width: 450' size='70' width='450' value='http://valiants.freehostia.com/uploads/<?php echo $destfile; ?>'> <br><input class=text type="text" style='width: 450' size='70' width='450' value='<img src=http://valiants.freehostia.com/uploads/<?php echo $destfile; ?>>'> <br><input class=text type="text" style='width: 450' size='70' width='450' value='[img=http://valiants.freehostia.com/uploads/<?php echo $destfile; ?>]'> <br><input class=text type="text" style='width: 450' size='70' width='450' value='[img=http://valiants.freehostia.com/uploads/<?php echo $destfile; ?>]'> <br><input class=text type=button value="«Back" name=file size=45 onclick=location='index.php?'> <?php } ?> <B><?php echo count(glob("uploads/*")); ?></b> images have been OWNED Thanks sooo much if you know of any ways Link to comment https://forums.phpfreaks.com/topic/115249-anyway-to-make-this-run-faster/ Share on other sites More sharing options...
discomatt Posted July 17, 2008 Share Posted July 17, 2008 You want to make an upload script run faster? Perhaps.. more bandwidth? Link to comment https://forums.phpfreaks.com/topic/115249-anyway-to-make-this-run-faster/#findComment-592502 Share on other sites More sharing options...
Vivid Lust Posted July 17, 2008 Author Share Posted July 17, 2008 I think I have unneeded coding lying around where longer bits could be made shorter Link to comment https://forums.phpfreaks.com/topic/115249-anyway-to-make-this-run-faster/#findComment-592505 Share on other sites More sharing options...
discomatt Posted July 17, 2008 Share Posted July 17, 2008 Not really... just a few slight redundancies. Nothing that would bring a server to it's knees though. If I was expecting thousands of hits an hour, I might streamline it a little, but other than that it looks fine. Link to comment https://forums.phpfreaks.com/topic/115249-anyway-to-make-this-run-faster/#findComment-592509 Share on other sites More sharing options...
The Little Guy Posted July 17, 2008 Share Posted July 17, 2008 don't use copy, use move_uploaded_file Link to comment https://forums.phpfreaks.com/topic/115249-anyway-to-make-this-run-faster/#findComment-592510 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.