I'm going to be working on a project where thousands of users will be purchasing a CD online and then downloading the songs as mp3s.
What is the best, most secure way to allow access to the mp3 files to the user once the transaction has been processed? Are there any 3rd party applications that take care of this?
The main thing is that thousands of people will be doing this w/in minutes.
Secure mp3 Download app
Moderator: General Moderators
- fendtele83
- Forum Commoner
- Posts: 27
- Joined: Tue Oct 25, 2005 2:21 pm
- Location: Woodbridge, NJ
You create a specific directory for that user, password protect it and copy the files to that directory and delete it after a specific time.
You can also write the allowed songs into a database and display the download links to that users loginpage.
The key here of course is that you got a registration for the user. If not you can use the one above.
You can also write the allowed songs into a database and display the download links to that users loginpage.
The key here of course is that you got a registration for the user. If not you can use the one above.
What you will need is a script that will serve the file using some id or something stored in a database.
All mp3s are out of web root.
This is the most secure way as far as I know.
Checkout this document.
http://www.paladion.net/pdf/Document_Se ... ations.pdf
All mp3s are out of web root.
This is the most secure way as far as I know.
Checkout this document.
http://www.paladion.net/pdf/Document_Se ... ations.pdf