Search found 7894 matches

by aimeos
18 Feb 2021, 07:38
Forum: Laravel package
Topic: Issue With Cronjobs To Send Every Minute
Replies: 6
Views: 1610

Re: Issue With Cronjobs To Send Every Minute

"/path/to/artisan" is the full path to the "artisan" file in your Laravel application directory.
by aimeos
18 Feb 2021, 07:37
Forum: Laravel package
Topic: Best way to implement backup SMTP connection
Replies: 3
Views: 893

Re: Best way to implement backup SMTP connection

You can implement a decorator (a wrapper class with the same interface, like an onion) that calls the underlying ai-swiftmailer class and if it throws an exception, send the e-mail to an alternative provider. Additonally, you have to extend the Aimeos context object and add your decorator instead of...
by aimeos
18 Feb 2021, 07:28
Forum: Laravel package
Topic: add category name into product's url
Replies: 1
Views: 880

Re: add category name into product's url

That's a bit difficult because you have to adapt the Laravel routing for that and add the category name in each URL as parameter. You also have to think about what's the category name if the product is assigned to several categories.
by aimeos
17 Feb 2021, 18:22
Forum: Help
Topic: CMS extension
Replies: 62
Views: 60574

Re: CMS extension

Now, the first working version of the CMS extension is ready! :-)

You can update using:

Code: Select all

composer up
by aimeos
17 Feb 2021, 08:59
Forum: TYPO3 extension
Topic: Small Configuration-things socialicons, catalog home, stocklevel...
Replies: 10
Views: 3738

Re: Small Configuration-things socialicons, catalog home, stocklevel...

It might be better to create one topic for each question so it's easier to reply. 1) How i can set values for the social media icons? And where i can disable then? Or i have to go in the templates and the delete the parts? https://aimeos.org/docs/2020.x/config/client-html/catalog-social/ Use the sea...
by aimeos
17 Feb 2021, 08:51
Forum: TYPO3 extension
Topic: Bug with multi mandate and customer account emails from scheduler?
Replies: 16
Views: 5304

Re: Bug with multi mandate and customer account emails from scheduler?

Someone has to debug the TYPO3 core code to see what's happening and why TYPO3 generates a wrong URL.
by aimeos
17 Feb 2021, 08:50
Forum: Help
Topic: translation - how to translate site names
Replies: 2
Views: 1108

Re: translation - how to translate site names

"Sites" have no translations but you can use the Arabic name in the site label.
by aimeos
17 Feb 2021, 08:48
Forum: Help
Topic: site form - update attributes table
Replies: 8
Views: 2491

Re: site form - update attributes table

Sorry, haven't seen that the insertItem() contains additional code. The code seems more or less OK but you should release the connection first before you start the setup manager. If it doesn't work when inserting new sites at the root level, you have to add debug statements in your code and in the A...
by aimeos
16 Feb 2021, 18:09
Forum: Laravel package
Topic: Issue With Cronjobs To Send Every Minute
Replies: 6
Views: 1610

Re: Issue With Cronjobs To Send Every Minute

Execute on the CLI: crontab -e Add this line there (change "/path/to/artisan" to the real path): * * * * * php /path/to/artisan aimeos:jobs "order/export/csv order/email/delivery order/email/payment order/email/voucher order/service/delivery subscription/export/csv customer/email/acco...
by aimeos
16 Feb 2021, 18:05
Forum: TYPO3 extension
Topic: Twint as a Payment Option
Replies: 6
Views: 2705

Re: Twint as a Payment Option

Aimeos passes the three URLs in each request. If Datatrans needs them nevertheless, you can use the URL of the "thank you" page with the Aimeos "Checkout Confirm" plugin.