Search found 52 matches

by flomo
06 May 2020, 07:17
Forum: Laravel package
Topic: Payment gateways no longer working after update
Replies: 8
Views: 2967

Re: Payment gateways no longer working after update

I only replaced the code from your link in my custom extension of the checkout template for testing purposes, but yes, it solves the broken payments for Stripe and Datatrans (and probably all others). Thanks!

Any idea, when this will be in a stable release?
by flomo
05 May 2020, 16:53
Forum: Laravel package
Topic: Payment gateways no longer working after update
Replies: 8
Views: 2967

Re: Payment gateways no longer working after update

I just analyzed the payment process and it seems indeed to be a bug. This is the request, that is being sent to Datatrans: _token "---private--" cp_payment "1" merchantId[0] "---private--" amount[0] "53700" currency[0] "CHF" refno[0] "104" ...
by flomo
04 May 2020, 08:41
Forum: Laravel package
Topic: Confused about vendor files
Replies: 4
Views: 1525

Re: Confused about vendor files

That helped a lot, thank you!
by flomo
04 May 2020, 07:37
Forum: Laravel package
Topic: Confused about vendor files
Replies: 4
Views: 1525

Re: Confused about vendor files

Thanks for clarifying, that makes sense.

Does this mean, we have to exclude /ext from version control? Like /vendor?
by flomo
04 May 2020, 07:36
Forum: Laravel package
Topic: Payment gateways no longer working after update
Replies: 8
Views: 2967

Re: Payment gateways no longer working after update

For the payments I installed these packages: "academe/omnipay-datatrans": "^3.0", "aimeos/ai-payments": "^2020.04", "omnipay/stripe": "^3.1". Here's the list of installed dependencies (reverted back to stable Aimeos release): academe/omnipa...
by flomo
03 May 2020, 18:39
Forum: Laravel package
Topic: Payment gateways no longer working after update
Replies: 8
Views: 2967

Payment gateways no longer working after update

I updated from Aimeos 2019.10 to 2020.4 (also ai-payments). Now when I check out with Stripe I only get the message "Could not find payment information". With Datatrans payment gateway I get a "... incorrect request !" message. I then switched the aimeos/ai-payments and aimeos/ai...
by flomo
03 May 2020, 12:08
Forum: Laravel package
Topic: Confused about vendor files
Replies: 4
Views: 1525

Confused about vendor files

I'm a bit confused about the Aimeos files. As I understand, the following happens, when installing Aimeos: 1. Composer downloads files to /vendor directory 2. Aimeos exports/copies files to the /ext directory 3. When we "php artisan vendor:publish", there are copies of files being made to ...
by flomo
09 Apr 2020, 15:53
Forum: Laravel package
Topic: Custom Routes with Laravel 7
Replies: 2
Views: 1110

Re: Custom Routes with Laravel 7

I did something similar in my web.php routes file: // Clear previous routes $emptyRoutes = new \Illuminate\Routing\RouteCollection(); Route::setRoutes($emptyRoutes); // Add modified content from Aimeos routes.php Maybe it's best, if one could simply "php artisan vendor:publish --tag=aimeos_rout...
by flomo
08 Apr 2020, 16:07
Forum: Laravel package
Topic: Custom Routes with Laravel 7
Replies: 2
Views: 1110

Custom Routes with Laravel 7

As of Laravel 7 it is no longer possible to have duplicate route names: https://laravel.com/docs/7.x/upgrade#unique-route-names The Aimeos docs recommend to add a duplicate route to overwrite the default URLs: https://aimeos.org/docs/Laravel/Custom_routes This fails in Laravel 7 when using php artis...