Search found 24 matches

by gizmo
07 Mar 2024, 12:54
Forum: TYPO3 extension
Topic: Scheduled aimeos tasks are failing when executed via Cronjob
Replies: 4
Views: 46833

Re: Scheduled aimeos tasks are failing when executed via Cronjob

Thanks for your input. We figured out that the following code from our typoscript config lead to the error:

Code: Select all

[traverse(request.getQueryParams(), 'debug') == 1]
    page.10.settings.debug = 1
[GLOBAL]
After removing these lines, everything worked fine.
by gizmo
29 Feb 2024, 15:25
Forum: TYPO3 extension
Topic: Scheduled aimeos tasks are failing when executed via Cronjob
Replies: 4
Views: 46833

Re: Scheduled aimeos tasks are failing when executed via Cronjob

academe/omnipay-datatrans 3.1.0 Datatrans Gateway for the Omnipay payment processing library aimeos/ai-admin-graphql 2023.10.4 Aimeos Admin GraphQL API extension aimeos/ai-admin-jqadm 2023.10.10 Aimeos VueJS+Bootstrap admin backend aimeos/ai-admin-jsonadm 2023.10.2 Aimeos JSON admin API for backend...
by gizmo
29 Feb 2024, 12:55
Forum: TYPO3 extension
Topic: Scheduled aimeos tasks are failing when executed via Cronjob
Replies: 4
Views: 46833

Scheduled aimeos tasks are failing when executed via Cronjob

Hi there, In TYPO3 Scheduler, I created 3 "Aimeos Shop advanced scheduler (aimeos)" tasks. One thats running every minute, every hour and every day. When I execute them manually, the tasks work just fine. As soon as they are executed via cronjob, the execution fails and I receive the follo...
by gizmo
04 Dec 2021, 15:58
Forum: TYPO3 extension
Topic: Error: Parameter "ai__f_name" for route "ai_0" must match "[^/~]++" ("" given) to generate a corresponding URL.
Replies: 4
Views: 2443

Re: Error: Parameter "ai__f_name" for route "ai_0" must match "[^/~]++" ("" given) to generate a corresponding URL.

I did some fruther testing and I've realised the route which make the error is actually the following - routePath: '/c/{f_name}~{f_catid}' _controller: 'Catalog::list' I don't know why it it did work when I tested it the first time. Maybe there was something haning left in the cache.. Anyways... So ...
by gizmo
23 Nov 2021, 10:06
Forum: TYPO3 extension
Topic: Error: Parameter "ai__f_name" for route "ai_0" must match "[^/~]++" ("" given) to generate a corresponding URL.
Replies: 4
Views: 2443

Error: Parameter "ai__f_name" for route "ai_0" must match "[^/~]++" ("" given) to generate a corresponding URL.

In the error log I get the following Error: Parameter "ai__f_name" for route "ai_0" must match "[^/~]++" ("" given) to generate a corresponding URL. #0 /home/httpd/vhosts/frakmont.com/www/frakmont.com/frakmont.com/public/typo3/sysext/core/Classes/Routing/UrlGe...
by gizmo
23 Nov 2021, 09:54
Forum: TYPO3 extension
Topic: show delivery service if basket contains voucher
Replies: 2
Views: 1107

Re: show delivery service if basket contains voucher

Thank you for the answer, I will give this a try and else I try to write my own decorator
by gizmo
30 Oct 2021, 10:04
Forum: TYPO3 extension
Topic: show delivery service if basket contains voucher
Replies: 2
Views: 1107

show delivery service if basket contains voucher

In the shopI have a voucher (with a voucher product) and if the customer buys it, aimeos generates a voucher code and sends it via e-mail. This works as expected. The challenge arises if the customer buys a physical product and a voucher at the same time. Then the shipping costs have to be added sin...
by gizmo
30 Oct 2021, 09:33
Forum: TYPO3 extension
Topic: TYPO3: Check if user already exists
Replies: 1
Views: 1778

TYPO3: Check if user already exists

Is there a way to check if a username (email) already exists before aimeos creates a new user? I know TYPO3 got rid of the uniqueness of the username in the database, since you can have multiple sites on TYPO3 and on each site the same username should be able to be created. Right now if a user doesn...
by gizmo
23 Oct 2021, 09:56
Forum: TYPO3 extension
Topic: Aimeos send incorrect successUrl to Payment Provider
Replies: 4
Views: 2237

Re: Aimeos send incorrect successUrl to Payment Provider

Thanks for the hint, I think I found the problem (at least it works). Aimeos doesn't deliver the scheme ('https') to the TYPO3 UriBuilder, so it return nothing. I'm not sure why the Typo3 UriBuilder doesnt return a default scheme if the option absuoluteUri is set to 'true'. ( https://github.com/TYPO...