Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

eCommerce Tycoon


You are currently viewing our eCommerce Tycoon as a guest. Please register to participate.
Login



Reply
How can I sell a particular software and then when they buy it, it is automatically e
Old 10-21-2008, 01:00 PM How can I sell a particular software and then when they buy it, it is automatically e
Experienced Talker

Posts: 40
Location: i live with your mom
Trades: 0
If I wanted to sell a software or file that I have and a customer makes the purchase on my website (paypal) upon payment, how can I get my e-mail to e-mail the customer a link to download automatically, and the e-mail link disintegrates after 24-48 hours. How can I do something like this OR where can I get information about this.

Thanks a lot.

meloncracked meloncrack@live.com meloncrack@yahoo.com

Last edited by meloncrack; 10-21-2008 at 01:15 PM..
meloncrack is offline
Reply With Quote
View Public Profile Visit meloncrack's homepage!
 
 
Register now for full access!
Old 10-21-2008, 10:25 PM Re: How can I sell a particular software and then when they buy it, it is automatical
Experienced Talker

Posts: 34
Name: Wendall
Trades: 0
You have to use a digital delivery script for that...
__________________
WendallB

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE

Last edited by wendallb; 10-21-2008 at 10:25 PM.. Reason: typo
wendallb is offline
Reply With Quote
View Public Profile
 
Old 10-22-2008, 06:37 PM Re: How can I sell a particular software and then when they buy it, it is automatical
Experienced Talker

Posts: 40
Location: i live with your mom
Trades: 0
Hey I figured it out, for those that want to know the same solution to my problem is this.

It's called a digital goods delivery software. But it's super expensive almost more expensive then the cost of your cable internet. But so I have a different question. Instead of buying these company's softwares is there another way to go about this? Can anyone give me any suggestions on learning how to do it myself without these expensive third-party programs? Thank you.
meloncrack is offline
Reply With Quote
View Public Profile Visit meloncrack's homepage!
 
Old 10-22-2008, 07:05 PM Re: How can I sell a particular software and then when they buy it, it is automatical
Defies a Status

Posts: 1,605
Trades: 0
There are a slew of these scripts out there. Some are more secure than others.

The cheaper ones require you to modify something every so often to maintain security. The more expensive are set and forget.

Tell me how many sales per week you expect to make and I will try to point you to some of the cheaper ones for your scale.
__________________
Colbyt

Please login or register to view this content. Registration is FREE
colbyt is offline
Reply With Quote
View Public Profile
 
Old 10-26-2008, 02:22 PM Re: How can I sell a particular software and then when they buy it, it is automatical
Super Spam Talker

Latest Blog Post:
Omegle.com
Posts: 800
Trades: 0
Interesting i always wondered how this was done, what kind of costs are involved in this ?

Woc
__________________

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE
usearchme is offline
Reply With Quote
View Public Profile
 
Old 11-14-2008, 03:44 PM Re: How can I sell a particular software and then when they buy it, it is automatical
Junior Talker

Posts: 1
Name: Leon Janse van Rensburg
Trades: 0
I have searched for something almost similar, and had to develop it myself. I wanted the url to be hidden for the product, so that it does not become public knowledge and eventually searchable via google. All I could find was big bulky shopping carts or things which cost money.

So I have developed a solution for protecting the url. But it is currently only working with 2Checkout, since I will never use PayPal. Although it would not expire the download, but I am sure a web developer could easily expand this script. You can download it for free here: http://easy-2checkout-integrator.com/

All I ask is that you tell me what you think of this.
Radicals is offline
Reply With Quote
View Public Profile Visit Radicals's homepage!
 
Old 11-14-2008, 07:33 PM Re: How can I sell a particular software and then when they buy it, it is automatical
Learning Newbie's Avatar
Defies a Status

Latest Blog Post:
Astounding Republican Paranoia
Posts: 5,662
Name: John Alexander
Trades: 0
I would make the URL look like the sort YouTube uses, and employ redirection (a 302 status code) to send down the real data. Once. This lets you easily expire a URL, and count hits against it, refusing to work on the second request, etc.
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE
Learning Newbie is offline
Reply With Quote
View Public Profile
 
Old 11-15-2008, 11:28 AM Re: How can I sell a particular software and then when they buy it, it is automatical
Super Talker

Posts: 106
Trades: 0
Use cubecart. It has an e-purchase thingy
fiveacehosting is offline
Reply With Quote
View Public Profile
 
Old 11-15-2008, 04:27 PM Re: How can I sell a particular software and then when they buy it, it is automatical
Skilled Talker

Posts: 88
Trades: 0
Hey,
I have used a program for quite a while called amember available from www.amember.com, its well known in the forum development business and works with multiple payment gateways such as paypal, its well known for downloadable files too.
__________________
Graham Barnes


Please login or register to view this content. Registration is FREE
xpguy is offline
Reply With Quote
View Public Profile
 
Old 11-15-2008, 06:01 PM Re: How can I sell a particular software and then when they buy it, it is automatical
willcode4beer's Avatar
Super Moderator

Posts: 1,533
Name: Paul Davis
Location: San Francisco
Trades: 1
Create a random string, shove it in a DB table with a timestamp, customer id, etc.
Let your URL handler (servlet filter) read the string from the url, check the db (to validate if the time is still good), and serve up the file.

Not sure what server you are using...but, for J2EE, this is about 5-10 minute of work.
__________________

Please login or register to view this content. Registration is FREE

willcode4beer is offline
Reply With Quote
View Public Profile
 
Old 11-20-2008, 05:49 AM Re: How can I sell a particular software and then when they buy it, it is automatical
Banned

Posts: 923
Name: Geoff Vader
Location: In my dreams
Trades: 0
Quote:
Originally Posted by willcode4beer View Post
Create a random string, shove it in a DB table with a timestamp, customer id, etc.
Let your URL handler (servlet filter) read the string from the url, check the db (to validate if the time is still good), and serve up the file.

Not sure what server you are using...but, for J2EE, this is about 5-10 minute of work.
Exactly - pretty easy work. Totally free and totally simple. I expect the same approach will work no matter what server and languages.

The suggested method - of getting a script to check the timestamp before providing the file - is obviously the best. The second best (ah father ted, the second best priest) would be to put the identifier for this access-permission in a database which is checked at a fixed time each day and incremented - so that the time runs out on all entries. That way you don't get exacty 48 hour cut-off, you get it at the end of the next full day, etc.

My method I thought up for something similar was to get the server to remove the appropriate password from htaccess files on a regular basis - that way I didn't need timestamps so much as little tally-counts... I never actually built it, though, since the product had no requests and I was waiting for one before making the effort.

Why would people spend money on doing something which can be done for free in at least 4 or 5 totally different ways?
witnesstheday is offline
Reply With Quote
View Public Profile
 
Old 03-15-2009, 06:17 PM Re: How can I sell a particular software and then when they buy it, it is automatical
Novice Talker

Posts: 8
Name: Or
Trades: 0
I would also recommend Cube cart
NoOneElse is offline
Reply With Quote
View Public Profile
 
Old 03-16-2009, 02:07 PM Re: How can I sell a particular software and then when they buy it, it is automatical
Average Talker

Posts: 24
Name: Juergen Neuhoff
Trades: 0
Opencart0 has digital product delivery as a standard feature.
__________________
J.Neuhoff -
Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE

Tutorials for:
Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE
JNeuhoff is offline
Reply With Quote
View Public Profile Visit JNeuhoff's homepage!
 
Reply     « Reply to How can I sell a particular software and then when they buy it, it is automatically e
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.57038 seconds with 12 queries