Hey all, I am a newb when it comes to this kind of stuff, I have searched around and now I am in a pickle. I am looking to design a quick and easy way in which I can simply allow anyone to upload a file onto my website. Similar to rapidshare without security measures, captcha, etc. Anyone know of any website of such script? or point me in the right direction? Best answer after 6 hrs gets $5 in paypal (bank based).
The Best way to go about this would be PHP. Have a look through: http://www.hotscripts.com/PHP/Scripts_and_Programs/File_Manipulation/Upload_Systems/index.html If you don't find anything you think you can use just PM me and i will make you one for a small fee.
King_Goilio hit the nail on the head.. broaden your search from Hotscripts by doing a simple Google Search. Good luck !
hmm, this is begging for a security risk, anyways if you really want it, go here UGiA PHP UPLOADER http://sourceforge.net/projects/upu or here... Mega Upload. http://www.raditha.com/php/progress.php
Good God man, I run an Image Hosting site with extension checks (though I need to update it so it actually works on files like "file.php.jpg") and the bastards still seem to upload their php files to my server, which then edit my htaccess file to redirect all Search Engine traffic to their little dummy blog thing... sucks; and from the sounds of it... you're just asking to be swarmed by them... or worse... just my two cents... If you really want to do this though, all you have to do is something like: Form: <form method="post" action="uploader.php" enctype="multipart/form-data"> <input type="file" name="file" /> <input type="submit" value="Upload" /> </form> PHP: uploader.php $file = $_FILES['file']; if(move_uploaded_file($_FILES['file']['tmp_name'], "/path/to/".$file['name'])) { echo("<p><strong>Success.</strong><br />The file has been uploaded as /path/to/".$file['name']."</p>"); }else{ echo("<p><strong>Error.</strong><br />There was an error uploading your file. Please try again.</p>"); } PHP: Now, this script has NO security or checks of ANY KIND. Hell, I'm not even sure if I should have posted it... because it's very very bad idea. If you do use this, please for the love of God make backups of everything on your server every night at the very least. Also, WHEN something happens, don't blame me. Better yet... just don't use it. Use a pre-made that has some kind of filtering implemented in it.