|
Rank: Starting Member
Groups: Registered
Joined: 4/16/2003 Posts: 7 Location: ,
|
On my website I am cutrrently using the perl script to sell access and subscriptions to a members area. it is working great. I am looking at setting up another area with different content and selling subscriptions to that area. Is it possible to use perl and htpassword for 2 seperate subscriptions on a single website. What changes would I need to make to the perl script, .htpassword file, and .htaccess file to avoid confusion as to what passwords were for what areas.
Mark K.
|
|
Rank: Starting Member
Groups: Registered
Joined: 6/5/2004 Posts: 2 Location: ,
|
This may help: you can have multiple copies of the perl script in your cgi-bin (paypal.pl, paypal2.pl, etc.) and call them with an input tag in the button form tags of the html page:
<input type="hidden" name="notify_url" value="http://www.yourdomain.com/cgi-bin/paypal.pl">
and
<input type="hidden" name="notify_url" value="http://www.yourdomain.com/cgi-bin/paypal2.pl">
Make the appropriate price changes in each paypal.pl.
So, I wonder if using differnet .htpassword files would do the same thing? Perhaps someone knows this?
Hope it helps :) Krista
:)
|