Kryptronic Software Support Forum

You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.

#1 06-01-2007 22:00:14

roxie
Member
From: Central Oregon
Registered: 11-17-2003
Posts: 80
Website

Limiting number of Downloads per purchase

1)Where do I set the limit for number of downloads per purchased file and how many days that file is available? I have searched the forum and the backend store and can't find anything.

2)I've also noticed that I am not getting requests for username and passwords for purchased downloads- no matter what computer I'm using. IE: I made a purchase, saved the link to google bookmarks, went to two other different computers and downloaded the same file and no request for username/password. My sister in Ohio made a purchase, sent me the link and I was able to download with that same link on all three computers here as well.
We've tried clearing cache that didn't change anything.
Thank you,
RoxAnne

Offline

 

#2 06-04-2007 13:28:18

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19798
Website

Re: Limiting number of Downloads per purchase

(1) The time period is specified here:

Home > Kryptronic Hybrid X Core > Settings: Application Settings Menu > Cron Settings

Update the 'Public Download File Storage Time' setting.

(2) You need to password protect the public downloads directory yourself as per the instructions in the installer.


Nick Hendler

Offline

 

#3 06-04-2007 13:33:42

dh783
Member
From: Avondale, Arizona
Registered: 04-06-2005
Posts: 6233
Website

Re: Limiting number of Downloads per purchase

Are there any guides as to what to put into an .htaccess file that will work? What I have tried todate protects the directory but the passwords aren't getting me in. What I have tried is:

Code:

AuthUserFile /none/
AuthGroupFile /none/
AuthName ByPassword
AuthType Basic
<Limit GET>
require valid-user
</Limit>

John

Last edited by dh783 (06-04-2007 14:10:08)

Offline

 

#4 06-04-2007 14:04:22

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19798
Website

Re: Limiting number of Downloads per purchase

You need one file (.htaccess):

Code:

AuthUserFile /PATH/TO/YOUR/HTPASSWORD/FILE/.htpasswd
AuthGroupFile /dev/null
AuthName ByPassword
AuthType Basic
<Limit GET>
require valid-user
</Limit>

And another named .htpasswd with:

Code:

username:hashedpassword

The second file can be created on the command line using the htpasswd command.


Nick Hendler

Offline

 

Board footer