[moderator] Re: AquaticPrime Config.php + PayPal Advanced Variables Not Working

2009-02-05 Thread Scott Anguish
please take this discussion to either the creator of the AquaticPrime system or to the macsb (mac small business) list. On 3-Feb-09, at 7:21 PM, Chunk 1978 wrote: i have AquaticPrime set up with PayPal for a small software license that i sell maybe once every 2 months. i'm releasing somethi

Re: AquaticPrime Config.php + PayPal Advanced Variables Not Working

2009-02-04 Thread Sherm Pendley
On Feb 4, 2009, at 9:28 AM, Chunk 1978 wrote: $appLicense = $_REQUEST["appLicense"]; did not work either... :/ I wouldn't expect it to, since there is no "appLicense" item in the query string: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=1234567 You should take

Re: AquaticPrime Config.php + PayPal Advanced Variables Not Working

2009-02-04 Thread Chunk 1978
$appLicense = $_REQUEST["appLicense"]; did not work either... :/ On Tue, Feb 3, 2009 at 10:28 PM, Chunk 1978 wrote: > someone else told me that in order to use custom variables on my > paypal buttons i needed to set up IPN, and that the variable would > become apart of the button's URL... but i'

Re: AquaticPrime Config.php + PayPal Advanced Variables Not Working

2009-02-03 Thread Chunk 1978
someone else told me that in order to use custom variables on my paypal buttons i needed to set up IPN, and that the variable would become apart of the button's URL... but i'm trying to avoid setting up IPN simply because it's seems like overkill and complicated for my tired mind... so essentially

Re: AquaticPrime Config.php + PayPal Advanced Variables Not Working

2009-02-03 Thread Sherm Pendley
On Feb 3, 2009, at 7:21 PM, Chunk 1978 wrote: $appLicense = $_POST["appLicense"]; Try this instead: $appLicense = $_GET["appLicense"]; isn't this the correct method to incorporate customized php variables with the AquaticPrime scripts? It depends. When an HTML form has a "method" attribut

Re: AquaticPrime Config.php + PayPal Advanced Variables Not Working

2009-02-03 Thread Chunk 1978
excuse me. there was a typo in my example code. it should have read: if ($appLicense == "Software-A") { $key = "//the key for Software-A"; $privateKey = "//the private key for Software-A"; } also, $licenseExtension = ""; is not important here. On Tue, Feb 3, 200

AquaticPrime Config.php + PayPal Advanced Variables Not Working

2009-02-03 Thread Chunk 1978
i have AquaticPrime set up with PayPal for a small software license that i sell maybe once every 2 months. i'm releasing something new soon and i'm trying to customize the AquaticPrime .PHP scripts to handle the production and emailing of 2 different licenses depending on what the customer is buyi