Search found 8011 matches

by aimeos
19 Mar 2021, 06:23
Forum: Laravel package
Topic: Running CronJobs In Production
Replies: 1
Views: 776

Re: Running CronJobs In Production

The jobs command is implemented here: https://github.com/aimeos/aimeos-laravel/blob/master/src/Aimeos/Shop/Command/JobsCommand.php You can call the command in Laravel like described here: https://laracasts.com/discuss/channels/laravel/running-cmd-commands-shell-scripts-from-controller But it's not r...
by aimeos
17 Mar 2021, 15:37
Forum: Help
Topic: Dependant options
Replies: 1
Views: 878

Re: Dependant options

Yes, it does. Use selection products with variant articles.
by aimeos
17 Mar 2021, 08:50
Forum: TYPO3 extension
Topic: language+currency menu in TYPO3 bootstrap
Replies: 10
Views: 11688

Re: language+currency menu in TYPO3 bootstrap

Contrary to other integrations, the language menu is built by TYPO3 itself and if you use the Aimeos distribution including the bootstrap_package, it's added at the end of the page (for whatever reason). You have to adapt the setup of the bootstrap_package to put it into the top menu. The Aimeos Loc...
by aimeos
17 Mar 2021, 08:43
Forum: Help
Topic: Problems getting Sofort payment-service to work
Replies: 4
Views: 2331

Re: Problems getting Sofort payment-service to work

You are using an outdated documentation. Can you try using that one?
https://aimeos.org/docs/latest/manual/services/#sofort

Can you have a look into the Log panel of the admin backend and check if there are more details about the error available including a stack trace?
by aimeos
17 Mar 2021, 08:40
Forum: Help
Topic: Bundled products - same product occurs more than once
Replies: 3
Views: 1356

Re: Bundled products - same product occurs more than once

We will keep that in mind and see how we can add the functionality.
by aimeos
16 Mar 2021, 10:40
Forum: Laravel package
Topic: Order Confirmation Emails Not Sending due to TCP Timeout on port 587
Replies: 4
Views: 2345

Re: Order Confirmation Emails Not Sending due to TCP Timeout on port 587

We had a similar problem on a CentOS system that httpd couldn't access port 9200 and got around with: setsebool -P httpd_can_network_connect 1 You can also install setroubleshoot-server RPM and run: sealert -a /var/log/audit/audit.log it will give you a nice report with useful suggestions This was a...
by aimeos
16 Mar 2021, 08:26
Forum: Laravel package
Topic: Admin commission in sites
Replies: 3
Views: 1416

Re: Admin commission in sites

There's PayPal for Platforms which can do the same:
https://developer.paypal.com/docs/platforms/
by aimeos
16 Mar 2021, 08:20
Forum: Help
Topic: Bundled products - same product occurs more than once
Replies: 3
Views: 1356

Re: Bundled products - same product occurs more than once

You are right, it's currently not possible to add a quantity to the bundled products.
by aimeos
14 Mar 2021, 15:11
Forum: Help
Topic: Voucher for the first order
Replies: 1
Views: 1155

Re: Voucher for the first order

Yes, you have to implement a coupon decorator similar to this one:
https://github.com/aimeos/aimeos-core/b ... r/Once.php

Just copy, paste and rename the code and remove the conditions in $expr you don't want.