Search found 75 matches

by jafo66
06 Jun 2025, 23:15
Forum: Laravel package
Topic: Custom email queue backed by database
Replies: 4
Views: 246804

Re: Custom email queue backed by database

How do I configure my own database backed class for a specific queue type ex: my-team?

It seemed like I just needed to add a configuration line item, is there something else much more difficult?

Thanks!
by jafo66
06 Jun 2025, 15:33
Forum: Laravel package
Topic: Custom email queue backed by database
Replies: 4
Views: 246804

Re: Custom email queue backed by database

On question #2, it looks like I just needed to modify the config/queue.php by changing the 'default' to be database. I will configure the .env file instead of making that hardcoded change just to confirm.

Is that the correct approach?
by jafo66
06 Jun 2025, 15:19
Forum: Laravel package
Topic: Custom email queue backed by database
Replies: 4
Views: 246804

Custom email queue backed by database

Based on some business logic, I need to create an email queue backed by a database table. I've tried to follow what the AI chat gave me but I'm missing a key piece. I created my database queue handler class in my extension: packages/mypackage/src/MQueue/Queue/DBQueue.php namespace MQueue/Queue In my...
by jafo66
20 May 2025, 19:20
Forum: Laravel package
Topic: JSON API & OmniPay
Replies: 3
Views: 190681

Re: JSON API & OmniPay

So if we utilize the javascript from our payment gateway provider directly, how do we automatically mark the order as being received, generate the invoice number, etc. through the JSON or does that have been done via a controller (after the payment is processed)?
by jafo66
20 May 2025, 13:46
Forum: Laravel package
Topic: After upgrade to 2024.10.4 - getRefItems doesn't return data
Replies: 3
Views: 169877

Re: After upgrade to 2024.10.4 - getRefItems doesn't return data

Thanks... sorry for the newbie question, but should those settings go into the config/shop.php file or somewhere else?
by jafo66
19 May 2025, 21:21
Forum: Laravel package
Topic: After upgrade to 2024.10.4 - getRefItems doesn't return data
Replies: 3
Views: 169877

After upgrade to 2024.10.4 - getRefItems doesn't return data

Upgraded to 2024.10.4 We have been using the following code successfully for over a year. After upgrading this has stopped working. $dbProduct = $productManager->get($productId, ['text', 'media', 'price', 'attribute']); $long_description = $dbProduct->getRefItems('text', 'long', null)->first(); if (...
by jafo66
19 May 2025, 19:37
Forum: Laravel package
Topic: JSON API & OmniPay
Replies: 3
Views: 190681

JSON API & OmniPay

Details: - Laravel - 2024.07.02 ver - Omnipay gateway service We are looking to perform a checkout using the JSON API. We are able to convert the basket to an order with the payment service being marked to correspond with the credit card service. We do not provide any of the credit card details at t...
by jafo66
07 Dec 2024, 21:04
Forum: Laravel package
Topic: Order created prior to credit card processing
Replies: 3
Views: 64845

Re: Order created prior to credit card processing

Is there a job or way to remove the "unfinished" orders after a period of time?
by jafo66
03 Dec 2024, 17:49
Forum: Laravel package
Topic: Basket locale() error after upgrade to 2024.10
Replies: 12
Views: 472265

Re: Basket locale() error after upgrade to 2024.10

Not the best answer, but I had to clear out all the old baskets, then everything started working properly again.
by jafo66
03 Dec 2024, 04:04
Forum: Laravel package
Topic: How do you set the contextSiteLabel?
Replies: 1
Views: 47535

How do you set the contextSiteLabel?

We are running 2024.10.2 with PHP 8.3.

We are hoping to set the title without having to modify all of the templates especially in the checkout process.

Thanks!