Search found 42 matches

by antonlinderer
24 Jan 2018, 08:54
Forum: Laravel package
Topic: custom logo issue for payment emails
Replies: 12
Views: 4482

custom logo issue for payment emails

I have set up a custom logo absolute path in config/shop.php for payment emails but when I run a cron job for emails I receive an error message as follows:
In Swift.php line 206:
Call to undefined method Swift_EmbeddedFile::newInstance()

I am using aimeos 2017.10
by antonlinderer
22 Jan 2018, 19:20
Forum: Laravel package
Topic: custom order id
Replies: 5
Views: 2273

Re: custom order id

Excellent point!
I should forget about this.
Thanks for the feedback.
by antonlinderer
21 Jan 2018, 22:17
Forum: Laravel package
Topic: custom order id
Replies: 5
Views: 2273

Re: custom order id

I would like to have my order id's as unix timestamps instead of AUTO_INCREMENT integers.
by antonlinderer
21 Jan 2018, 22:13
Forum: Laravel package
Topic: multi language email payment issue
Replies: 6
Views: 2847

Re: multi language email payment issue

I have run "composer update" for 2017.10 without my modified template and it seems to be working now for multi languages!
by antonlinderer
21 Jan 2018, 15:52
Forum: Laravel package
Topic: custom order id
Replies: 5
Views: 2273

custom order id

How would I go to use custom order id's instead of the standard id for orders which is now AUTO_INCREMENT ?
I was thinking of overriding the aimeos-core file located in lib/mshoplib/src/MShop/Order/Manager/Base/Address/Standard.php
Is that the right approach and how would I do that? Thanks.
by antonlinderer
20 Jan 2018, 12:08
Forum: Laravel package
Topic: multi language email payment issue
Replies: 6
Views: 2847

Re: multi language email payment issue

Fixed it. Changed it here: https://github.com/aimeos/ai-client-html/blob/master/client/html/templates/common/summary/detail-standard.php#L201 from: $params = array( 'd_prodid' => $product->getProductId(), 'd_name' => $product->getName( 'url' ) ); to: $params = array( 'locale' => app()->getLocale(), ...
by antonlinderer
19 Jan 2018, 22:33
Forum: Laravel package
Topic: multi language email payment issue
Replies: 6
Views: 2847

Re: multi language email payment issue

I have not been successful yet... will try again. I am using following versions: aimeos/ai-client-html 2017.10.7 aimeos/ai-controller-frontend 2017.10.5 aimeos/ai-controller-jobs 2017.10.4 aimeos/ai-laravel 2017.10.1 aimeos/ai-payments 2017.10.2 aimeos/ai-swiftmailer 2017.10.1 aimeos/aimeos-core 201...
by antonlinderer
19 Jan 2018, 15:33
Forum: Laravel package
Topic: multi language email payment issue
Replies: 6
Views: 2847

multi language email payment issue

I have set up a multi language aimeos site. All goes well but when the user has finished ordering no payment confirmation email is sent although cron jobs are running for emails. This is what I get in madmin_log table: Error while trying to send payment e-mail for order ID "1" and status &...
by antonlinderer
18 Dec 2017, 09:59
Forum: Laravel package
Topic: One page checkout problem
Replies: 4
Views: 1990

Re: One page checkout problem

try to use: 'client' => [ 'html' => [ 'checkout' => [ 'standard' => [ 'onepage' => ['address','delivery','payment','summary'] ] ] ], ], instead of: 'client' => [ 'html' => [ 'checkout' => [ 'standard' => [ 'onepage' =>[ array( 'address', 'delivery', 'payment', 'summary' ) ] ] ] ], ],
by antonlinderer
14 Dec 2017, 07:50
Forum: Laravel package
Topic: login as user from admin panel
Replies: 8
Views: 4772

Re: login as user from admin panel

A popular boilerplate for Laravel has this feature of "Login As" User: http://laravel-boilerplate.com/5.5/docu ... ss-control