Search found 8 matches

by pdanzinger
11 May 2017, 10:41
Forum: Help
Topic: Redirect loop with payment forms to payment.url-self
Replies: 9
Views: 4376

Re: Redirect loop with payment forms to payment.url-self

Yeah, that's right. The problem is, I'm not really sure how it is supposed to work. As far as I can tell, the additional order is generated in https://github.com/aimeos/ai-client-html/blob/master/client/html/src/Client/Html/Checkout/Standard/Process/Standard.php#L273 . But the only call to the proce...
by pdanzinger
10 May 2017, 11:32
Forum: Help
Topic: Redirect loop with payment forms to payment.url-self
Replies: 9
Views: 4376

Re: Redirect loop with payment forms to payment.url-self

"Faking" the cs_order parameter seems to fix it, so that's probably the issue. It seems to work fine when I replace 'payment.url-self' => $this->getUrlSelf( $view, $args + array( 'c_step' => 'process' ), [] ), with 'payment.url-self' => $this->getUrlSelf( $view, $args + array( 'c_step' => ...
by pdanzinger
10 May 2017, 11:23
Forum: Help
Topic: Redirect loop with payment forms to payment.url-self
Replies: 9
Views: 4376

Re: Redirect loop with payment forms to payment.url-self

OmniPay::processOrder() is never called. When the form is displayed, process() calls getPaymentForm() instead of processOrder(). When the payment form is submitted, the payment provider isn't called at all. If my understanding is correct, OmniPay::process() should be called that way: https://github....
by pdanzinger
09 May 2017, 09:49
Forum: Help
Topic: Redirect loop with payment forms to payment.url-self
Replies: 9
Views: 4376

Re: Redirect loop with payment forms to payment.url-self

I just reproduced it with a blank setup: - Windows 7, php 7.0.8 - Download TYPO3 8 LTS (aimeos distribution installation throws an error on 7.6) - Install aimeos distribution 2017.04 and aimeos payments (16.10, but whatever) from TER - Add stripe payment: https://i.imgur.com/IzxuP8d.png - Create ord...
by pdanzinger
09 May 2017, 09:15
Forum: Help
Topic: Redirect loop with payment forms to payment.url-self
Replies: 9
Views: 4376

Re: Redirect loop with payment forms to payment.url-self

Yes, that was the one I was referring to at the end. It results in a redirect loop too (and as far as I can see it sends credit card information to the shop server, which would complicate PCI compliance).
by pdanzinger
08 May 2017, 20:58
Forum: Help
Topic: Redirect loop with payment forms to payment.url-self
Replies: 9
Views: 4376

Redirect loop with payment forms to payment.url-self

I'm using aimeos 2017.04 (with current composer patches, e.h. client-html 2017.04.6) with TYPO3 7.6. My aim is to create a custom payment provider that displays a payment form after the customer clicks on "buy now" on the summary page. The form should then be processed by the payment provi...
by pdanzinger
27 Mar 2017, 11:09
Forum: Help
Topic: Rendering attribute media in product partial
Replies: 3
Views: 2395

Re: Rendering attribute media in product partial

Thanks for the fast response. Regarding the first points, in this instance some attributes are necessary for "non-expert" users to distinguish the products from one another. The performance likely won't be an issue either. I am aware that passing the context into a template is a violation ...
by pdanzinger
26 Mar 2017, 16:03
Forum: Help
Topic: Rendering attribute media in product partial
Replies: 3
Views: 2395

Rendering attribute media in product partial

Hi, I'm currently adapting aimeos for a webshop. Now i want to show some product attributes (more specifically the attribute's image) on the product cards, e.g. in the list view, suggested and recently viewed products, etc. Since it is always rendered via client/html/templates/common/partials/produc...