Version: 1.0, by Getox
Developer Last Online: Dec 2005
Version: 3.0.5
Rating:
Released: 01-17-2005
Last Update: 01-17-2005
Installs: 24
DB Changes
No support by the author.
vBDownload Area v1.0
Features:
Restrict Downloading to XX user groups
Add/Edit/Delete Categorys
Upload/Edit/Delete Files
Post/Delete Comments
A little info:
Categorys & Files can have description.
Will show how many files in the category.
Will Show how many comments & downloads the file has.
Planned for 1.1:
Statistics(count all downloads, comments, and file downloads)
*MAYBE* Restrict Usergroups to Categorys
Linked Download's
*MAYBE* Anti-Leech
*MAYBE* File Rating
User Uploads
File Screen Shot(*MABY* With Thumbnail)
*MAYBE* Custom Fields
Is There anything else you would like to see in 1.1 ?
1.1 Status: Done:
Upload to DB or Folder.
Querys are more secure.(changed some $_REQUEST's to $_GET's and added addslashes() aswell)
Linked Downloads.
Statistics
Screen Shot(No thumbnail)
Freakin awesome! I have been looking for this. I have thousands of files to download and I am currently using a links program to do it.
Few questions, can we import files on the server, for example ones that are too big to upload?
Also, can we assign mods to this? Instead of only having an admin run it? I am very insterested in the user uploads, a file sharing idea is what I am looking for so that people can share powerpoint presentations etc.
Freakin awesome! I have been looking for this. I have thousands of files to download and I am currently using a links program to do it.
Few questions, can we import files on the server, for example ones that are too big to upload?
Also, can we assign mods to this? Instead of only having an admin run it? I am very insterested in the user uploads, a file sharing idea is what I am looking for so that people can share powerpoint presentations etc.
Thanks again!!!
-Jason
Ill add mods in 1.1 or 1.2
and adding files from a diff location, Ill try to do that.
Nice mod, but (1) big problem! You are not validating many of your $_REQUEST['?'], anyone using MySQL 4.1 or higher can have their database deleted, or user table read! I am not going to post how, but let me tell you it is very easy, allowing what you allow! Why do I say this, because many of your querys are open to SQL_INJECTIONS! Validate each request or use addslashes() or better yet, use mysql_real_escape_string() <- PHP 4.3.0, if you don't want to validate the request! But you should always validate anything coming into your script!
Nice mod, but (1) big problem! You are not validating many of your $_REQUEST['?'], anyone using MySQL 4.1 or higher can have their database deleted, or user table read! I am not going to post how, but let me tell you it is very easy, allowing what you allow! Why do I say this, because many of your querys are open to SQL_INJECTIONS! Validate each request or use addslashes() or better yet, use mysql_real_escape_string() <- PHP 4.3.0, if you don't want to validate the request! But you should always validate anything coming into your script!