<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title><![CDATA[AspDotNetStorefront Community | ASP.NET eCommerce Shoppingcart Software - Gateways & Checkout]]></title>
		<link>http://forums.aspdotnetstorefront.com/</link>
		<description />
		<language>en</language>
		<lastBuildDate>Sun, 19 May 2013 16:59:42 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://forums.aspdotnetstorefront.com/images/misc/rss.png</url>
			<title><![CDATA[AspDotNetStorefront Community | ASP.NET eCommerce Shoppingcart Software - Gateways & Checkout]]></title>
			<link>http://forums.aspdotnetstorefront.com/</link>
		</image>
		<item>
			<title>Need help setting up PayPal</title>
			<link>http://forums.aspdotnetstorefront.com/showthread.php?143042-Need-help-setting-up-PayPal&amp;goto=newpost</link>
			<pubDate>Tue, 14 May 2013 18:02:26 GMT</pubDate>
			<description>Hi all, 
 
I need some help with setting up PayPal. So far we have been using individual Buy Now buttons generated by PayPal on product pages but now we want this handled through the store.  
 
I followed the instructions in the manual for setting up PayPal Standard. The manual did not mention...</description>
			<content:encoded><![CDATA[<div>Hi all,<br />
<br />
I need some help with setting up PayPal. So far we have been using individual Buy Now buttons generated by PayPal on product pages but now we want this handled through the store. <br />
<br />
I followed the instructions in the manual for setting up PayPal Standard. The manual did not mention anything about a gateway for PayPal Standard so I have left it on &quot;manual&quot;. <br />
<br />
Here is what is happening:<br />
<br />
After adding items to shopping cart, selecting shipping, and selecting PayPal as the payment method, the confirmation shows the total including tax and shipping....<br />
<br />
<a href="http://forums.aspdotnetstorefront.com/attachment.php?attachmentid=1659&amp;d=1368553152"  title="Name:  Screenshot (3).png
Views: 6
Size:  6.0 KB">Screenshot (3).png</a><br />
<br />
clicking next takes me to PayPal, but here is where the problems start. First there is no shipping price sent to PayPal so the total it is charging the customer doesn't include the shipping cost.<br />
<br />
<a href="http://forums.aspdotnetstorefront.com/attachment.php?attachmentid=1662&amp;d=1368554440"  title="Name:  Screenshot (4).png
Views: 6
Size:  11.4 KB">Screenshot (4).png</a><br />
<br />
<br />
Then, after completing the PayPal steps of selecting payment method and clicking pay now, a confirmation number is given along with a link to return to the store. After clicking the return to store link, paypal gives a little summary of the transaction and then redirects me to my store. However, instead of getting a confirmation message from my store, I am taken to the sign in page because I have been logged out. <br />
<br />
When I try to log in again, I receive an error message stating that my account has been locked by the administrator. So I have to go into the database and unlock the account. Also, looking at the orders page, it shows that this order that was being placed is marked as fraud. <br />
<br />
Also, when looking at the Customers table in the database, it appears that a new anonymous customer id was created during the checkout.<br />
<br />
What is going on here? How can I get this to work? <br />
<br />
Thanks for the help.<br />
<br />
MS 9.1.0.1</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://forums.aspdotnetstorefront.com/images/attach/png.gif" alt="File Type: png" />
	<a href="http://forums.aspdotnetstorefront.com/attachment.php?attachmentid=1659&amp;d=1368553152" target="_blank">Screenshot (3).png</a> 
(6.0 KB)
</li><li>
	<img class="inlineimg" src="http://forums.aspdotnetstorefront.com/images/attach/png.gif" alt="File Type: png" />
	<a href="http://forums.aspdotnetstorefront.com/attachment.php?attachmentid=1662&amp;d=1368554440" target="_blank">Screenshot (4).png</a> 
(11.4 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://forums.aspdotnetstorefront.com/forumdisplay.php?41-Gateways-amp-Checkout"><![CDATA[Gateways & Checkout]]></category>
			<dc:creator>omairkha</dc:creator>
			<guid isPermaLink="true">http://forums.aspdotnetstorefront.com/showthread.php?143042-Need-help-setting-up-PayPal</guid>
		</item>
		<item>
			<title><![CDATA[PayPal & Google Checkout Workflow Questions?]]></title>
			<link>http://forums.aspdotnetstorefront.com/showthread.php?141241-PayPal-amp-Google-Checkout-Workflow-Questions&amp;goto=newpost</link>
			<pubDate>Wed, 24 Apr 2013 13:45:03 GMT</pubDate>
			<description><![CDATA[So, I'm developing an inventory control software that will automatically remove products from the store once they are out of stock, and of course publish them back to the store once they are received back into inventory.  Currently, I'm sending the cart items ordered from the store to inventory...]]></description>
			<content:encoded><![CDATA[<div>So, I'm developing an inventory control software that will automatically remove products from the store once they are out of stock, and of course publish them back to the store once they are received back into inventory.  Currently, I'm sending the cart items ordered from the store to inventory control via a JSON string.  Once received by inventory control, the items are committed until they are marked as shipped, refunded or voided in the admin area.  Everything is working when an order is paid for using Auth.net.<br />
<br />
I wanted to see if someone could explain to me the process when someone checks out using PayPal Express or Google Checkout.  I've notice that some orders will sit in the admin section with the status of PENDING until approved by PayPal or Google.  When this happens, I commit the product in inventory control and all is good.  What I'm unsure about is when a payment is not approved by PayPal or Google Checkout, the order disappears off the order admin screen and I'm not 100% sure what link Google Checkout and PayPal are using to notify the store that the order needs to be cancelled.  I just need to add a line of code with the order id to the place this is happening, then my custom inventory code will take care of the rest.<br />
<br />
Any insight that you can offer would be very helpful.<br />
<br />
AspDotNetStoreFront version is 8.0.0.0.<br />
<br />
Thanks,<br />
<br />
Brian</div>

]]></content:encoded>
			<category domain="http://forums.aspdotnetstorefront.com/forumdisplay.php?41-Gateways-amp-Checkout"><![CDATA[Gateways & Checkout]]></category>
			<dc:creator>RedDev</dc:creator>
			<guid isPermaLink="true">http://forums.aspdotnetstorefront.com/showthread.php?141241-PayPal-amp-Google-Checkout-Workflow-Questions</guid>
		</item>
	</channel>
</rss>
