Web Hosting Vodahost    

Home Take The Royal Tour! Order Now Features Prices
Go Back   Web Hosting > VodaHost Web Hosting Support > General Support Issues

Notices

General Support Issues Answers to general questions and help with common problems. For help with a specific issue, post to one of the forums below.

Closed Thread
 
Thread Tools
  #1  
Old 11-19-2006, 07:18 AM
First Lieutenant
 
Join Date: Nov 2006
Posts: 180
Send a message via AIM to clanffa
Default Problems With Upload Form

I used your tutorial on the upload form and dide EXACTLY as it said.
When i tested it i got this in the email
Video Upload Details :
email : matthewmargulis******.com
name : TestPicture3213
upload:

The upload space was blank.
The webpage where the form is located is http://www.ffaproam.com/uploadform.html

I also tried turnin git into a .php but it still doesnt work
http://www.ffaproam.com/uploadform.php


http://www.ffaproam.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #2  
Old 11-19-2006, 07:50 AM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 10,052
Default Re: Problems With Upload Form

Please post here the php script that you have used. No need to turn it to php. Only the script page needs to be php.

However, PLEASE DELETE from your thankyou page, the upload directory. If a hacker simply uploads a php file, instead of a picture, and then knows where it is, he can simply click on it and gain control of your site or simply mess it all up. I ALWAYS suggest that the upload directory name SHOULD NOT be the same as the one in the tutorial, i.e. "uploads" but anything else: "myuploads1234" or "upfiles" or "filesdir" or "125rfhbne58952db" or ANYTHING, but not the classic name in the tutorial. I also alwAys SUGGEST THAT AN INDEX PAGE, EVEN A BLANK ONE, IS PUBLISHED IN THAT FOLDER, TO PREVENT PEOPLE FROM BROWISING THIS FOLDER. yOU ARE DOING EXCACTLY THE OPPOSITE: YOU ARE INVITING HACKERS TO TAKE CONTROL OF YOUR SITE.
__________________
Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #3  
Old 11-19-2006, 08:00 AM
First Lieutenant
 
Join Date: Nov 2006
Posts: 180
Send a message via AIM to clanffa
Default Re: Problems With Upload Form

Quote:
<?php

// Receiving variables

@$email = addslashes($_POST['email']);
@$upload_Name = $_FILES['upload']['name'];
@$upload_Size = $_FILES['upload']['size'];
@$upload_Temp = $_FILES['upload']['tmp_name'];


// Validation for max file size

if ($upload_Size>0)
{
if( $upload_Size >200000000)
{
//delete file
unlink($upload_Temp);
header("Location: error.html");
exit;
}
$uploadFile = "uploads/".$upload_Name ;

@move_uploaded_file( $upload_Temp , $uploadFile);
chmod($uploadFile, 0644);
$upload_URL = "http://www.ffaproam.com/uploads/".$upload_Name ;
}

//Sending Email to form owner

$mailto = "jackshinta@ffaproam.com";
$mailsubj = "Video Upload";
$mailhead = "From: $email\n";
reset ($HTTP_POST_VARS);
$mailbody = "Video Upload Details :\n";
while (list ($key, $val) = each ($HTTP_POST_VARS))
{
if ($key!="submit")
{
$mailbody .= "$key : $val\n";
}
}
$mailbody .= "upload: $upload_URL\n";
mail($mailto, $mailsubj, $mailbody, $mailhead);

header("Location: thankyou_page.html");

?>
there's the php script
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #4  
Old 11-19-2006, 08:13 AM
First Lieutenant
 
Join Date: Nov 2006
Posts: 180
Send a message via AIM to clanffa
Default Re: Problems With Upload Form

God I just dont know what to do about this!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

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 On
Pingbacks are On
Refbacks are Off



All times are GMT +1. The time now is 02:22 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC7
2005-2009 VodaHost Web Hosting Your Perfect Web Host - All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203