active questions tagged paypal - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T10:57:28Zhttp://stackoverflow.com/feeds/tag/paypalhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1849165/do-i-need-a-banking-license-for-this-paypal-based-ecommerce-app0Do I need a banking license for this paypal-based ecommerce app?James2009-12-04T19:35:20Z2009-12-05T03:32:08Z
<p>The application will accept payments from users with paypal's Payments Standard. All of this money will be stored temporarily in the company's paypal account, and then redirected to some of the users involved in the transaction via their paypal accounts (we'd also keep a cut of this money). Would this implementation require a banking license or any other kind of license?</p>
<p>EDIT: region = California</p>
<p>I'd appreciate any help.</p>
http://stackoverflow.com/questions/1845274/auto-refill-using-paypal0"Auto-refill" using PaypalEuwyn2009-12-04T06:47:49Z2009-12-04T10:01:24Z
<p>So recurring monthly payments are pretty simple. What about auto-refill, like Skype (every time your account runs low on credit, you get auto-charged)? Is this possible using Paypal (in a somewhat seamless way)? I'm guessing it's a terrible idea to even think about storing credit card information. What about another payments solution?</p>
http://stackoverflow.com/questions/1470353/implementing-a-free-trial-period-with-paypal2Implementing a free trial period with PayPalInspire2009-09-24T08:10:46Z2009-12-04T02:28:52Z
<p>Hello,</p>
<p>I am trying to implement a recurring subscription service on a website using PayPal however I would like to offer a free trial period before the user is billed and the subscription is started. Is this possible using PayPal's API?</p>
<p>I have very little experience using the PayPal API and cannot seem to find any useful documentation about implementing a free trial period, so any help would be much appreciated.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1838925/are-paypal-cookies-linked-to-an-ip-address0Are PayPal cookies linked to an IP address?mayfly2009-12-03T10:05:20Z2009-12-03T10:35:43Z
<p>I have been experimenting with curl for accessing the PayPal payment authorisation site using PHP.</p>
<p>e.g. </p>
<pre>
...
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $nvp);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$res = curl_exec ($ch);
preg_match_all('/Set-Cookie: .*/', $res, $cookieMatches);
foreach ($cookieMatches[0] as $cookieMatch)
header($cookieMatch);
preg_match('/Location: .*/', $res, $locMatches);
header($locMatches[0]);
header('Vary: Accept-Encoding');
header('Strict-Transport-Security: max-age=500');
header('Transfer-Encoding: chunked');
header('Content-Type: text/html');
</pre>
<p>The principle being simply to reflect the original redirect (I am sure there is a simpler way to do this). However, the response from PayPal seems to indicate some kind of cookie error.</p>
<p>My hunch is that the cookie has been linked to the originating machine in some way. Can anyone confirm this, or am I just missing something obvious!</p>
http://stackoverflow.com/questions/1838984/paypal-request-money-does-it-have-api0Paypal request money - does it have API ?Pydev UA2009-12-03T10:17:42Z2009-12-03T10:17:42Z
<p>There is a <a href="https://www.paypal.com/cgi-bin/webscr?cmd=p/req/index-outside" rel="nofollow">request money by email</a> feature on paypal - (where you can put email of some person and he can send you money)</p>
<p>Does it have an API ? (So I want to request money by email from my application)</p>
http://stackoverflow.com/questions/1838634/paypal-recurring-payments0Paypal Recurring PaymentsPydev UA2009-12-03T09:05:34Z2009-12-03T09:29:27Z
<p>Here is what I need:</p>
<p>Let's say I have a hotel rooms rental website</p>
<p>People can come rent a room for some period and pay with paypal(first they pay, than thay get a room)</p>
<p>In some cases person might want to use some services when they are staying in hotel (like room service, mini bar, etc.) - So after person leaves I need to charge them with that extras..</p>
<p>How it works in paypal ? the only thing I found is subscribe options - but they are like per-month, per-day subscriptions.. And I need manually charge some amount from customer from my site</p>
<p>Does it possible ?</p>
http://stackoverflow.com/questions/1838585/passing-custom-variables-to-paypal-ipn0Passing custom variables to paypal IPNspotlightsnap2009-12-03T08:51:27Z2009-12-03T09:05:58Z
<p>Hi,</p>
<p>I am trying to pass custom variables to paypal IPN. I can manage to pass one variable. But i don't know how to pass multiple variables.</p>
<p>My Process is something like this</p>
<ol>
<li>User fill up the form</li>
<li>They click button and it goes to paypal</li>
<li>They paid, IPN send me back the information and that ipn.php added variables that passed to the database.</li>
</ol>
<p>My custom variables are</p>
<ol>
<li>total lines (whenever they write, i count the lines)</li>
<li>message (their message that they wrote)</li>
<li>advertisement id </li>
</ol>
<p>But for now, I can only pass one variable like this</p>
<p><strong>form.php</strong></p>
<pre><code><input name="custom" type="hidden" id="custom" value="{$line_count}">
$_SESSION['line_count'] = $_POST['lines_txt'];
</code></pre>
<p><strong>ipn.php</strong></p>
<pre><code> $sql="INSERT INTO `form` (
`totalline` ,
)
VALUES (
'" .$_POST['custom']. "'
);";
</code></pre>
http://stackoverflow.com/questions/1822386/spicelogic-and-buynowbutton-with-a-postback-for-paypal0Spicelogic and Buynowbutton with a postback for PaypalSimon2009-11-30T21:04:30Z2009-12-02T14:24:27Z
<p>Hi folks,
I'm presently using Spicelogic "Buynowbutton". When clicking on it, a postback's raising before redirecting user to Paypal website. All that because, we want to create a "transaction"-like in our database and when he comes back from Paypal, to log if transaction canceled, completed or anything. We don't want to handles any credits cards number so thats why we're using this type of control.</p>
<p>My problem is, everyting workin' preaty fine, postback, redirecting to paypal website... Everything! Exept, one things, hehe. When we click on the "spicelogic - BuyNowButton", we see the "postback". I mean, we saw a new response and our page shows back and then, we're redirect to paypal. About there, its ok cuz we allows postback otherwise its ok. But during this "postback", all our website design move on left and we dunno why!</p>
<p>After comparing both source code, we saw that there's added HTML code :o|!!! </p>
<p>After postback :</p>
<pre><code><!--
Transferring :
-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>
Websitename
</title><link href="css/style.css" rel="stylesheet" type="text/css" />
<script src="SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
<link href="SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css" /><style type="text/css">
<!--
body { cursor:progress;}
-->
</code></pre>
<p>
</p>
<p>It adds a Transfering in comments and the css class on my body. It also adds :</p>
<pre><code><iframe name="ctl00$ContentPlaceHolder1$LoginStatut$BuyNowButton20Credits" src="/MpTradWebClientv2/slPPWPSICtrlForm4357.aspx?senderName=ctl00%24ContentPlaceHolder1%24LoginStatut%24BuyNowButton20Credits&amp;refreshTail=2178" id="ctl00$ContentPlaceHolder1$LoginStatut$BuyNowButton20Credits" marginheight="0" marginwidth="0" scrolling="no" frameborder="0" width="191" height="226">
Sorry, your browser does not support iframes; try a browser that supports W3 standards.
</iframe>
</code></pre>
<p>Do one of those thing can make all my website style being confuse?</p>
<p>Thanks folks!!!! And sorry for me english ... I usualy talk french</p>
http://stackoverflow.com/questions/1833115/paypal-website-payment-standard-adddress-override0Paypal | Website Payment Standard | Adddress OverrideJamieC2009-12-02T14:09:49Z2009-12-02T14:09:49Z
<p>I have set up a website with integration with paypal's Payment Standard. This includes address_override=1 to send to paypal a fixed the delivery adddress.</p>
<p>A "helpful" feature of paypal is that it pre-populates the uploaded address into the billing address fields for an unregistered user. </p>
<p>If the user then fills in their credit card details their card will obviously be declined as the billing address must match their card. All works fine if the user realises the error and replaces my uploaded address with their real billing address, but the client im working for is nervous that users will not realise to do this... I have to agree somewhat.</p>
<p>Does anyone know of a solution to this? some variable im missing in the standard variables docu's from Paypal which says "thiis is an address override, but only uise it for delivery adress, never billing address"</p>
<p>TIA</p>
http://stackoverflow.com/questions/1832924/how-do-you-declare-a-c-variable-into-an-html-type-variable0How do you declare a C# variable into an HTML type variable?pageman2009-12-02T13:31:25Z2009-12-02T13:37:05Z
<p>What's the C# equivalent of</p>
<p><% dim name %></p>
<p>so you can use it for web forms in PayPal API integration?</p>
http://stackoverflow.com/questions/1182077/setting-up-paypal-account-in-substruct0Setting up Paypal account in SubstructMike2009-07-25T13:17:08Z2009-12-02T00:23:16Z
<p>Hi,
I am new to both paypal and substruct. I trying to integrate paypal with 'Substruct'. The problem I am facing is that the payment status codes are not being updated in the admin panel.
All of them are on Hold even when paypal sandbox successfully confirmed the orders. From the web somebody suggested that the 'notify_url' needs to be set in the confirm order form </p>
<p>Paypal documention says the same as well.</p>
<p><strong>*<a href="https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_html_Appx_websitestandard_htmlvariables" rel="nofollow">https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_html_Appx_websitestandard_htmlvariables</a>*</strong></p>
<p>What value should I provide to the notify_url so that the webserver on my machine is notified. BTW my webserver is behind a LAN.</p>
http://stackoverflow.com/questions/1263300/is-a-billing-address-required-by-paypals-website-payments-pro0Is a billing address required by PayPal's Website Payments Pro? Alex.Bullard2009-08-11T22:21:14Z2009-12-01T14:18:27Z
<p>I'm creating a website with rails that sells a virtual service, and therefore don't really want to validate the billing address for credit card transactions. </p>
<p>From what I have read on paypal (page 14 of this <a href="https://cms.paypal.com/cms%5Fcontent/US/en%5FUS/files/developer/PP%5FWPP%5FIntegrationGuide.pdf" rel="nofollow">pdf</a>) and other resources i have looked at, this should be totally possible. However, when I submit a purchase or an authorize request to paypal with ActiveMerchant I get back the error "Please enter a complete billing address." </p>
<p>Just in case I was doing something incorrectly I copied the code from <a href="http://railscasts.com/episodes/144-active-merchant-basics" rel="nofollow">Railscast 144</a> (using my own login, password, etc) Even with this code I continue to get the error. </p>
<p>Is there something I'm overlooking?
Some setting I have to change on Paypal's side?
Or is a billing address now required? </p>
<p>Thanks for your help</p>
<p>Alex</p>
http://stackoverflow.com/questions/1742931/can-i-get-the-item-name-description-to-show-up-in-paypal0Can I get the item name/description to show up in paypal?Ryan2009-11-16T15:33:47Z2009-11-30T19:00:03Z
<p>I have a pretty simple paypal checkout integrated into my site. The user adds items to their shopping cart and then can either pay by paypal using express checkout or by using a credit card via paypal (paypals gateway).</p>
<p>After the user purchases something, when they log into their paypal account (for paypal express checkout transactions) they don't see a details list of what they purchased... they just see that they paid me x dollars... is there a way through some parameter passing when doing the transaction that I can have a detailed list of what the user purchased?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1816625/asp-net-mvc-forms-authentication-and-unauthenticated-controller-actions0ASP.NET MVC Forms authentication and unauthenticated controller actionsMike Weerasinghe2009-11-29T20:12:24Z2009-11-29T20:51:08Z
<p>I have a ASP.NET MVC site that is locked down using Forms Authentication. The web.config has </p>
<pre><code><authentication mode="Forms">
<forms defaultUrl="~/Account/LogOn" loginUrl="~/Account/LogOn" timeout="2880"/>
</authentication>
<authorization>
<deny users="?"/>
</authorization>
</code></pre>
<p>None of my pages other than Account/LogOn can be viewed unless the user is authenticated. </p>
<p>Now I am trying to add PayPal IPN to my site and in order to do that I need to have two pages that handle PayPal's payment confirmation and thank you page. These two pages need to be available for anonymous users. </p>
<p>I would like these pages to be controller actions off my Account controller. Is there any way I can apply an attribute to specific action methods that make them available to anonymous users? I found a several posts here that attempt to do that but there was most people wanted the opposite scenario. </p>
<p>Basically I want may AccountController class to have no authorization for most of the methods except for a few. Right now it looks like only the LogOn method is available to anonymous users.</p>
<p>Thanks in advance for all your help.</p>
http://stackoverflow.com/questions/1812944/how-to-integrate-paypal-with-winform-desktop-application0How-to integrate Paypal with WinForm Desktop ApplicationYoann. B2009-11-28T16:29:00Z2009-11-28T17:40:29Z
<p>How-to integrate Paypal with WinForm Desktop Application</p>
<p>Maybe Server-to-Server solution ?</p>
http://stackoverflow.com/questions/1807827/using-post-array-from-paypal1Using post array from paypalandrew2009-11-27T10:06:15Z2009-11-27T21:29:30Z
<p>I am using paypal to process payments on my site. Paypal returns the post array like</p>
<pre><code>[item_number1] =12
[item_name1] = My product name
[quantity1] =3
[item_number2] =14
[item_name2] = My product name2
[quantity2] =5
[num_cart_items] 2
</code></pre>
<p>Insert step here now im just going in circles getting nowhere</p>
<p>And then run the for loop</p>
<pre><code>for($i = 1;$i <= $num_cart_items ;$i++){
$x = 'item_number' . $i;
$y = 'item_name' . $i;
$z = 'quantity' . $i;
$new_amount = $row['stock_quantity'] - $$z;
$db->update1_by_match('cart_products','stock_quantity',$new_amount,'id',$$x);
}
</code></pre>
<p>Im having trouble with these variable variables. Is there a better way to do this?</p>
<p>Thanks
Andrew</p>
http://stackoverflow.com/questions/1802048/allow-unregistered-paypal-users-to-make-payments0Allow unregistered paypal users to make paymentsandrew2009-11-26T07:21:28Z2009-11-27T20:21:20Z
<p>Hi i am integrating paypal web payments standard into my shopping cart using the setup where you just send a form to paypal with all the values in hidden fields. I want to enable the option that allows people to make payments even if they are not a registered paypal user. I am sure i read somewhere in the paypal documentation but now i can't find it. </p>
<p>Thanks a lot
Andrew</p>
http://stackoverflow.com/questions/1775761/php-paypalewp-on-windows-not-working-right-short-return0Php paypalewp on windows not working right, short returnIsisagate2009-11-21T15:24:01Z2009-11-27T12:48:30Z
<p>I am working on a payment script using paypalewp, it seems to work fine in the stage environment which is a centos linux box, however on my dev box it doesn't... </p>
<p>when I run the button creation script on my local machine (windows vista ultimate) the button generated code looks like this</p>
<pre><code>-----BEGIN PKCS7-----
MIIBhwYJKoZIhvcNAQcDoIIBeDCCAXQCAQAxggE6MIIBNgIBADCBnjCBmDELMAkG
A1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExETAPBgNVBAcTCFNhbiBKb3Nl
MRUwEwYDVQQKEwxQYXlQYWwsIEluYy4xFjAUBgNVBAsUDXNhbmRib3hfY2VydHMx
FDASBgNVBAMUC3NhbmRib3hfYXBpMRwwGgYJKoZIhvcNAQkBFg1yZUBwYXlwYWwu
Y29tAgEAMA0GCSqGSIb3DQEBAQUABIGAKVEaEZz+JWT37bx71C0s+kfu/8GRu8RM
chF0uqIBAuRiw1WoChk/GefP73HtVZsDoJ+WjnnBXc90mGT8B+uLPnltF55dTB5H
9tXkCMKYho1iTZLJ+S6QkmQoZrB75/w2DEqoF7C2Ffy3UOA7eGCz++hcdbkfAQkE
kvwAFVLemnUwMQYJKoZIhvcNAQcBMBoGCCqGSIb3DQMCMA4CAgCgBAiiYx5HZyF/
6YAI39uNy89GnDg=
-----END PKCS7-----
</code></pre>
<p>however on the linux box it's like this... </p>
<pre><code>-----BEGIN PKCS7-----
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
uNg2AQuUlPojonX9T9gg
-----END PKCS7-----
</code></pre>
<p>It uses the same code, parameters, and ssl keys. The one on stage works fine when connecting to paypal, the one on my local box doesn't. There is something wrong with the configurations, any thoughts?</p>
http://stackoverflow.com/questions/1805061/ajax-timed-mysql-queries-please-wait-screen0AJAX - timed mySQL queries (please wait screen)Mark2009-11-26T18:17:28Z2009-11-27T11:44:03Z
<p>I need to make an AJAX page which queries the database on page load and then every 5-10 seconds after that. In the meantime I will display some kind of waiting page (maybe with a animated gif to keep my customers entertained :) ) </p>
<p>I am working with paypals IPN so its for while I am waiting for the transaction to clear.. most of the time it clears before the user returns, but sometimes it does not. So if anyone has such code or could point me in the direction of such code that would be great.</p>
http://stackoverflow.com/questions/1806739/shopping-cart-reserve-product0Shopping Cart reserve productandrew2009-11-27T04:35:18Z2009-11-27T04:35:18Z
<p>Following on from this question <a href="http://stackoverflow.com/questions/1357143/shopping-cart-and-stock-management">here</a>, how does one reserve a product in a shopping cart when a user goes to pay? What if the user abandons the purchase and does not come back to your site, how will you unreserve the product if the page is not being reloaded. For that matter how would you reserve the product in the first place? I am creating a cart using php mysql and using paypal web payments standard.
Thanks</p>
http://stackoverflow.com/questions/1801651/accepting-paypal-payments-on-a-new-zealand-shopping-cart-site0Accepting paypal payments on a New Zealand Shopping Cart siteandrew2009-11-26T05:09:04Z2009-11-26T08:46:59Z
<p>I am developing a site in New Zealand with a shopping cart. I am trying to find a good payment gateway. I tried paypal website payments standart but then realised that paypal does not offer this service in New Zealand, though i didn't see this info on their site and only found out when i was playing around in sandbox. My question is which payment gateways are available to developers in New Zealand. Does paypal offer something that i could use, where do i find info on paypal about which countries their services are offered in?
I would especially like to hear from developers in NZ about what you have used.
Thanks
Andrew</p>
http://stackoverflow.com/questions/1789612/paypal-mass-pay-fails-when-large-transactions-are-made0Paypal Mass pay fails when large transactions are madeSid2009-11-24T11:57:08Z2009-11-25T18:01:59Z
<p>I am using the paypal mass pay feature but i am unable to make payments greater than $20. When I attempt to make large transactions (say for $120) i get the error that says the account has insufficient funds.</p>
<p>My account has more than the requisite amount to make the payment. I am trying to find a solution as there is no documentation that says anything about an a limit for each payment in the mass pay api.</p>
<p>I would appreciate any help on this.</p>
http://stackoverflow.com/questions/1789699/php-example-for-paypal-adaptive-payments-convertcurrency-api0PHP example for PayPal Adaptive Payments ConvertCurrency APIunknown (google)2009-11-24T12:14:34Z2009-11-24T12:14:34Z
<p>Trying to wrap my head around the new PayPal Adaptive Payments API - specifically the ConvertCurrency functionality. Has anyone had any luck with this in PHP?</p>
<p>Documentation: <a href="https://www.x.com/docs/DOC-1400" rel="nofollow">https://www.x.com/docs/DOC-1400</a></p>
http://stackoverflow.com/questions/1783832/paypal-payment-without-account0Paypal - payment without accountPydev UA2009-11-23T15:25:53Z2009-11-23T15:30:11Z
<p>I need to integrate paypal into online store..</p>
<p>Requirements
- All credit cards (secure) details should be inputed on PayPal site
- User do not need paypal account</p>
<p>So there is couple ways of integration</p>
<ol>
<li>Standart IPN - when you redirect
user to paypal site and he use his
(or create new) paypal account and
than redirected back to site</li>
<li>PayPal Payments Pro - user input his details including credit card number on my site(and I make payment using API)</li>
</ol>
<p>But is there a way where I can redirect user to paypal site and he just input a credit card number and redirected back.. So user input just credict card number and that it is - he do not need a paypal account or fill any other fields.. Does it possible?</p>
http://stackoverflow.com/questions/1779157/how-can-i-automatically-alert-my-php-mysql-web-app-that-a-paypal-transaction-has0How can I automatically alert my php/mysql web app that a PayPal transaction has gone through?Sam2009-11-22T16:16:55Z2009-11-22T17:44:54Z
<p>I have a client who will be selling access to an online service on their website. They would like to integrate a PayPal Buy Now button into the site... no problems there. However, they want their customers to have instant access to the online service that they are selling as soon as the payment is processed. That seems reasonable to me... the problem is that I can't seem to find a way to automate that. So my question is really this:</p>
<p><strong>How can I automatically alert my php/mysql web app that a PayPal transaction has gone through?</strong></p>
<p>All I would really need is like a callback process that triggers a php script to updates the customer's record in the database... right? Seems simple to me. But I can't seem to find a way to do it! Anyway, if you've accomplished anything similar with PayPal, I'd be grateful for your advice!</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/823652/how-to-modify-a-recurrent-paypal-payment0How to modify a recurrent PayPal paymentYossi2009-05-05T06:52:31Z2009-11-22T14:33:52Z
<p>I’m trying to implement the following scenario:</p>
<ol>
<li>User approves a recurrent weekly payment (subscription) for a selected package size</li>
<li>Every week the user can:
a. Cancel a specific week delivery and avoid paying for this week
b. Modify the package size and pay less/more for this time only
c. Add additional items and get charged for them in addition to theweekly package</li>
</ol>
<p>Looking at the documentation I did not find the APIs that allowing me to modify the subscription according to my needs.</p>
<p>Can someone please direct me to the right documentation or provide a code snippet?</p>
<p>Thanks,
Yossi </p>
http://stackoverflow.com/questions/1522832/looking-for-a-lightweight-asp-net-shopping-cart-that-is-paypal-compatible4Looking for a lightweight ASP.net shopping cart that is PayPal compatiblekustnodi2009-10-05T22:56:51Z2009-11-21T07:54:36Z
<p>I am currently developing a simple eCommerce site. I am looking for a lightweight non hosted ASP.net shopping cart solution that needs to </p>
<ul>
<li>Be able to talk to PayPal</li>
<li>Integrate with current site</li>
<li>Preferably handle PayPal's Instant Payment Notification</li>
</ul>
<p>The current site uses PayPal buy it now buttons or PayPal's add to cart buttons. The issue I have with PayPal's cart is that it allows buyers to update the quantities of items in their cart prior to checkout which is unacceptable because each item in this site is unique (i.e. quantity 1). </p>
<p>I wrote a handler for PayPal's Instant Payment Notification in order to remove an item from the site when it was sold but it is pretty inflexible and I don't have time or money to write a good one so something that handles that would be great :)</p>
<p>Anybody used any non hosted ASP paypal shopping carts before and have some recommendations?</p>
http://stackoverflow.com/questions/1372885/paypal-recurring-payments2Paypal recurring paymentsRajehs2009-09-03T11:34:16Z2009-11-20T21:18:19Z
<p>I have a product which have one time installation cost & then onwords it will deduct as per customer's use from his account.</p>
<p>I completed paypal work for one time installation cost, which is fixed. But i have problem of deducting onword months which our site will calculate & deduct from paypal site.</p>
<p>once customer gave his credit card & other info, from other month it will not required to collect this info. I want without payer's login deduct money from his account.</p>
<p>Is this possible? how?</p>
http://stackoverflow.com/questions/1620071/paypal-html-integration-problems-sales-tax-not-showing-for-recurring-payment0Paypal HTML integration problems (sales tax not showing for recurring payment)scoobydoo2009-10-25T05:11:07Z2009-11-20T01:00:01Z
<p>I am using the Paypal standard (HTML 'API') to integrate Paypal to my website.</p>
<p>I have managed to display 'subscribe' buttons for recurring payments, using HTML variables as specified in the Paypal documentation. However, there is one serious "show stopper" problem:</p>
<p>I am unable to get Paypal to recognize sales tax amount for RECURRING PAYMENTS.</p>
<p>Despite using the 'tax' field (and setting a positive number to it), the tax is not being displayed on the bill for the recurring item.</p>
<p>Using the 'tax' field for a 'buy now' button does however work correctly (the tax amount is shown on the bill page). Has anyone else experienced this - and what is the solution (or work around for this?)</p>
<p>BTW, I am running in the Paypal sandbox</p>
http://stackoverflow.com/questions/1744317/paypal-integration-in-coldfusion0Paypal integration in coldfusionraki2009-11-16T19:29:14Z2009-11-19T16:11:14Z
<p>I am trying to integrate paypal into my website using coldfusion, everything is working fine except the "return to merchants" url :( .. </p>
<p>The date displayed as the button is getting ad the return url :(</p>
<p>Please give me an idea what is happening there :)</p>