I'm trying to deal with paypal perl script
Configuring the PayPal Password Management Script
Once the Perl script is installed and Basic Authentication is set up, you will need to configure your server. Using a text editor you need to fill in a few configuration options in paypal.pl. 1.Open the file (it should be in your CGI script directory; this example assumes /var/www/cgi-bin): pico /var/www/cgi-bin/paypal.pl 2.Near the top of the file are the following lines: # User Constants - customize these to YOUR installation
my $PASSWORD_FILE = '/var/www/files/.htpassword';
my $TRANSACTION_FILE = '/var/www/files/processed_txns';
my $PAYPAL_URL = 'http://www.paypal.com/cgi-bin/webscr';
my $PASSWORD_FILE = '/var/www/files/.htpassword';
my $TRANSACTION_FILE = '/var/www/files/processed_txns';
my $PAYPAL_URL = 'http://www.paypal.com/cgi-bin/webscr';
Configuring the PayPal Password Management Script
Configuring the PayPal Password Management Script
3
14
April 2002 Password Management Installation Guide
my $PERIOD1 = '';
my $PERIOD2 = '';
my $PERIOD3 = '';
my $AMOUNT1 = '';
my $AMOUNT2 = '';
my $AMOUNT3 = '';
my $SMTP_SERVER = '192.168.1.10';
my $ADMIN_EMAIL = 'admin@abc123.com';
my @PAYMENT_EMAILS = ('s@a123.com');
my $PERIOD2 = '';
my $PERIOD3 = '';
my $AMOUNT1 = '';
my $AMOUNT2 = '';
my $AMOUNT3 = '';
my $SMTP_SERVER = '192.168.1.10';
my $ADMIN_EMAIL = 'admin@abc123.com';
my @PAYMENT_EMAILS = ('s@a123.com');
3.
Change the path of $PASSWORD_FILE to that of your .htpassword file which you created above. 4.You need to specify a path and filename for $TRANSACTION_FILE. This file is used to track the transactions the Password Management script has processed. Create this file using the touch command: touch /var/www/files/processed_txns 5.Then change the owner so the script will be able to write to it (replace our example Apache username with your actual username): chown /var/www/files/processed_txns apache
From: https://www.paypal.com/en_US/pdf/installation.pdf
I don't understand...then I don'tknow what to do...
I know it's not a BV related question..but if somebody have
a clear step by step set up and configuration for a "stupid idiot". I'll take it!
From: https://www.paypal.com/en_US/pdf/installation.pdf
I don't understand...then I don'tknow what to do...
I know it's not a BV related question..but if somebody have
a clear step by step set up and configuration for a "stupid idiot". I'll take it!
Comment