Aimeos

Results 206 comments of Aimeos

Thank you for your PR! Multiple Stripe configurations are already possible without your change. Just create two payment service options and use the "Currency" decorator to limit each one to...

Yes, that looks like SQL injection attempts

How did you add the language/currency selection and what's the URL of your site?

What are the URLs which contain that parameters?

This is due to browser caching for performance reasons. The browser will cache the home page for 30 sec: https://github.com/aimeos/aimeos-laravel/blob/master/src/Controller/CatalogController.php#L86

> Is there a way to disable the cache, or at least overwrite it? You can change the `cache_maxage` value in the ./config/shop.php > Also, I encountered another issue -...

Add `'cache_maxage' => 0,` here: https://github.com/aimeos/aimeos/blob/master/config/shop.php#L63 When using Google Chrome as browser, we don't see the same behavior like in your video. Is there any error in the browser console?

It's hard to split the `updateSync` and `processOrder` methods further so this is currently the best option. Can you please add tests so the code coverage doesn't decrease?