hot questions tagged e-commerce - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T14:05:21Z http://stackoverflow.com/feeds/tag?tagnames=e-commerce&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1791818/losing-session-data-when-user-logs-in 0 Losing session data when user logs in sico87 2009-11-24T17:58:11Z 2009-11-28T23:07:16Z <p>Hello, </p> <p>I have been working on a shop that is built in Python on the back of the django framework, everything was working fine until I noticed that when a user proceeds to the checkout and is requested to log in they do so and their basket empties...obvioulsy this is not a great thing for a basket to do, I was wondering what is causing this, could some look over my code and give me some advice at what it could be? I am at my wits end.</p> <p>=====Edit - Below is my code I would appreciate it if someone could give me a hit at how i can stop the basket clearing when a users logins=====</p> <pre><code> def basket(request): """ Display the current state of the basket and allow the customer to modify the discount and quantities of each row of the basket """ data = {} basket = Basket(request) discount_form = DiscountCodeForm(basket) if request.method == "POST": if 'update' in request.POST: basket.post_update(request) discount_form = DiscountCodeForm(basket, request.POST) if discount_form.is_valid(): cleaned_data = discount_form.cleaned_data if cleaned_data['discount_code']: basket.set_discount(Offer.objects.get(code=cleaned_data['discount_code'])) if 'delete' in request.POST: basket.post_delete(request) if 'remove_discount' in request.POST: basket.remove_discount() data['discount_form'] = discount_form data['logged_in'] = persistent_account(request) data['pageclass'] = 'basket' data['category'] = Category.objects.root_category() data['products'] = Product.objects.all() data['regions'] = Zone.objects.all() data['currency'] = Currency.get_default_currency() return render_to_response('basket.html', data, RequestContext(request)) def login(request): """ Log the user in. The form is where the actual login occurs. If already logged in, then forward to the last attempted page, or, if came directly to the login page, the account page. @todo: Incorrect guesses limit of 10 then deactive account """ data = {} redirect_to = request.GET.get('next', reverse('account')) account = persistent_account(request) if account: return HttpResponseRedirect(reverse('account')) if request.method == "POST": login_form = LoginForm(request, request.POST) # This next line will also cause a login if login_form.is_valid(): login_form.user.message_set.create(message="You have successfully logged in. Welcome back.") return HttpResponseRedirect(redirect_to) else: login_form = LoginForm(request) data['shop_login_form'] = login_form data['pageclass'] = 'customer_login' return render_to_response('login.html', data, RequestContext(request)) </code></pre> <p>What i have given you is my login view and basket view hope that is enough, if not feel free to shout me.</p> http://stackoverflow.com/questions/1623747/how-to-pay-your-users-alternatives-to-paypal 17 How to pay your users? (alternatives to PayPal) Sosh 2009-10-26T08:56:29Z 2009-11-05T00:10:19Z <p>Hi,</p> <p>I would like to know what best non-paypal options are for paying users of your website (for services rendered for instance).</p> <p>How are others doing this at the moment? </p> <p>If you could mention specific services providers that would be most useful. This would have to work internationally, not be limited to one country.</p> <p>Thank you</p> <p><strong>Update (in response to comments)</strong></p> <p><em>Reason for excluding PayPal:</em> I've had bad experiences with them in the past.</p> <p><em>Amounts:</em> Well, i don't mean micropayments of a few cents, but could be anything from 40EUR - 500 EUR.</p> <p><em>Currency:</em> I didn't mention this, but I would be paying in Euros.</p> http://stackoverflow.com/questions/1768656/are-automated-recurring-billings-really-automated 0 are automated recurring billings really automated? Ygam 2009-11-20T06:17:11Z 2009-11-20T06:21:55Z <p>"roll your own recurring billing in your rails app with a cron job, a date field for when they are paid through, and amount each person is paying"</p> <p>I just saw this entry here in SO and wonder if Automated Recurring Billing is really automated. Do I have to create a script that checks if it is already the right time to bill someone, bill them and then record transactions...or should I let the payment gateway do that?</p> http://stackoverflow.com/questions/1338950/best-cms-for-a-t-shirt-catalog-website 1 Best CMS for a T-Shirt catalog website alimango 2009-08-27T05:05:34Z 2009-11-30T02:34:49Z <p>Hi my friend who's studying CSS wants to make a simple t-shirt catalog website. He also wants to include e-commerece in the future. What's an easy to learn CMS--preferrably in PHP--do you guys suggest for him?</p> http://stackoverflow.com/questions/1469098/magento-paypal-express-having-issues-with-downloadable-products 0 Magento Paypal Express having issues with Downloadable Products nsearle 2009-09-23T23:48:10Z 2009-09-23T23:48:10Z <p>Hey All,</p> <p>Just like to send a thanks out in advance for the help. </p> <p>I have successfully setup a downloadable product with the option of filling out the URL in the Downloadable Information section. I have also successfully integrated the Paypal Express payment option. I can also successfully add the product to my cart, checkout and pay through Paypal Express from the link on my cart. I also am receiving the order email successfully. The problem comes once the download link is clicked, Magento tries to process and download but re-directs to the account login screen. </p> <p>Here are a few notes:</p> <ol> <li>Guest checkout for downloadable products is enabled.</li> <li>System->Configuration->Catalog->Downloadable Product Information-> Order Item Status - Set to Pending (I am thinking this is the problem due to the fact that I can't change it to Complete) If you agree, please advise on the best way to accomplish this.</li> <li>All orders are showing as Complete and PayPal is successfully capturing the monies.</li> </ol> <p>Again, thanks in advance. </p> http://stackoverflow.com/questions/1365981/how-do-i-get-response-codes-from-authorize-net-with-koahanas-payment-module 0 How do I get response codes from Authorize.net with Koahana's payment module? Ygam 2009-09-02T05:35:05Z 2009-09-16T03:39:39Z <p>that's about everything I need to ask:</p> <p>after u call the process() method, I want to get Authorize.net response codes and text. Or is that not included in the library. All I can see are set_field() and process() methods</p> http://stackoverflow.com/questions/1253031/paypal-payment-button-does-it-make-e-commerce-application-less-reputable 2 PayPal Payment Button - Does it make e-commerce application less reputable? [closed] routeNpingme 2009-08-10T03:45:19Z 2009-08-10T04:29:37Z <p>This is meant to be a subjective question on whether or not the PayPal Payment Button is considered a "hobby"-level feature in an otherwise professional e-commerce web application.</p> <p>Personally, I tend to cringe a little when I go to buy something and see a PayPal button in place of an in-house shopping cart. On the other hand, I'm sure my data is a lot safer with PayPal than with a lot of self-hosted services.</p> <p>Is this a legitimate UI reputability concern, or am I an e-commerce developer snob? Would you worry about this in your applications?</p> http://stackoverflow.com/questions/1321135/how-do-i-process-authorize-net-payments-without-a-card-using-the-card-not-prese 0 how do I process authorize.net payments without a card (using the "card not present" test account) Ygam 2009-08-24T08:32:22Z 2009-08-24T09:08:37Z <p>the card_num field is required...but all I have is a Card NoT present testing account...now how exactly do I go about that?</p>