Search found 15 matches

by dev_podup
27 Nov 2023, 07:00
Forum: Help
Topic: Multi tenancy email cronjob
Replies: 5
Views: 2111

Re: Multi tenancy email cronjob

I have a single application with multiple databases. Each database is set into config for use. I am running the following code in a cron every minute. $allTenants = Tenant::all(); foreach ($allTenants as $key => $tenant) { config(['database.connections.user.database' => $databaseName]); config(['sho...
by dev_podup
24 Nov 2023, 10:58
Forum: Help
Topic: Multi tenancy email cronjob
Replies: 5
Views: 2111

Re: Multi tenancy email cronjob

Thanks for the reply. By multi-tenancy, I mean I have multiple tenant databases. All tenant databases can have a single or multi-shop setup. The cronjob only seems to work for the database set in the .env file. How can I make the cronjob loop over all tenant databases?
by dev_podup
21 Nov 2023, 08:49
Forum: Help
Topic: Multi tenancy email cronjob
Replies: 5
Views: 2111

Multi tenancy email cronjob

Hello,

Version info:
Laravel - 8.x, PHP - 8.0, Aimeos - ~2023.07

I understand the order emails are sent using cronjob. But I have a multi-tenancy setup, what can I do to make the cronjob work for all tenant databases? So that it looks order status for all tenants and sends emails.
by dev_podup
05 Sep 2023, 16:21
Forum: Help
Topic: Authorize.Net DPM not working
Replies: 12
Views: 59990

Re: Authorize.Net DPM not working

Yes, all the required fields are added.
by dev_podup
05 Sep 2023, 05:34
Forum: Help
Topic: Authorize.Net DPM not working
Replies: 12
Views: 59990

Re: Authorize.Net DPM not working

I used this as a Post URL: https://test.authorize.net/gateway/transact.dll for the sandbox account.
But it gave the following error:

https://support.authorize.net/knowledge ... =000002267
by dev_podup
04 Sep 2023, 05:25
Forum: Help
Topic: Authorize.Net DPM not working
Replies: 12
Views: 59990

Re: Authorize.Net DPM not working

These are the respective field names on the form.
First name - x_first_name
Last name - x_last_name
Credit card number - x_card_num
Verification number - x_card_code
payment.expirymonthyear - x_exp_date

Do I need to somehow customize this form for it to work?
by dev_podup
02 Sep 2023, 07:07
Forum: Help
Topic: Authorize.Net DPM not working
Replies: 12
Views: 59990

Re: Authorize.Net DPM not working

Yes, the form that is displayed there has different field names than the expected ones.
by dev_podup
31 Aug 2023, 07:26
Forum: Help
Topic: Authorize.Net DPM not working
Replies: 12
Views: 59990

Re: Authorize.Net DPM not working

When I submit the form this method process() is called.
https://github.com/aimeoscom/ai-payment ... #L357-L364

But not the processOrder() one.
https://github.com/aimeoscom/ai-payment ... #L904-L939

Kindly provide help to fix this issue.
by dev_podup
29 Aug 2023, 16:36
Forum: Help
Topic: Authorize.Net DPM not working
Replies: 12
Views: 59990

Re: Authorize.Net DPM not working

The URL of the form action was the same as the page URL "http://127.0.0.1:8007/default/shop/checkout/process". So I checked in Aimeos\MShop\Service\Provider\Payment\AuthorizeDPM, and sure enough, it was returning this. $url = $this->getConfigValue( 'payment.url-self', '' ); return new \Aim...
by dev_podup
26 Aug 2023, 12:53
Forum: Help
Topic: Authorize.Net DPM not working
Replies: 12
Views: 59990

Authorize.Net DPM not working

Hello, Version info: Laravel - 8.x, PHP - 8.0, Aimeos - ~2023.07 I've added authorize.net sandbox account details as a payment providor. But when I reach the checkout process page, enter the details and click on Pay now button the same page keeps reloading. Please find attached the page I'm referrin...