Search found 122 matches

by VirtualSpy
10 Nov 2022, 12:28
Forum: Laravel package
Topic: no config for MAIL_FROM_NAME in order/email/payment job
Replies: 7
Views: 1400

Re: no config for MAIL_FROM_NAME in order/email/payment job

Set the sender name in your ./config/shop.php of your Laravel installation in the resource/email section as from-name: https://github.com/aimeos/aimeos/blob/master/config/shop.php#L131 or in your ./config/mail.php: https://github.com/aimeos/aimeos/blob/master/config/mail.php#L95 or in your .env fil...
by VirtualSpy
09 Nov 2022, 12:29
Forum: Laravel package
Topic: no config for MAIL_FROM_NAME in order/email/payment job
Replies: 7
Views: 1400

Re: no config for MAIL_FROM_NAME in order/email/payment job

The ./config/shop.php is those of your Laravel application, not inside your Aimeos extension. i am not asking about /config/shop.php.....i am asking about \vendor\aimeos\ai-controller-jobs\src\Controller\Jobs\Mail.php because here return $context->mail()->create() ->header( 'X-MailGenerator', 'Aime...
by VirtualSpy
08 Nov 2022, 07:26
Forum: Laravel package
Topic: no config for MAIL_FROM_NAME in order/email/payment job
Replies: 7
Views: 1400

Re: no config for MAIL_FROM_NAME in order/email/payment job

Configure the name using "resource/email/name" in ./config/shop.php: https://github.com/aimeos/ai-controller-jobs/blob/master/src/Controller/Jobs/Mail.php#L98 can i overwrite this file from my extension without this Warning: Ambiguous class resolution, "Aimeos\Controller\Jobs\Mail&qu...
by VirtualSpy
01 Nov 2022, 21:36
Forum: Laravel package
Topic: products is not listing in supplier from product import from csv
Replies: 3
Views: 832

Re: products is not listing in supplier from product import from csv

aimeos wrote: 31 Oct 2022, 10:35 Did you rebuild the product index afterwards?
Thank you so much for your helpful suggestion, products is listing in supplier after rebuild the product index.
by VirtualSpy
01 Nov 2022, 15:12
Forum: Laravel package
Topic: no config for MAIL_FROM_NAME in order/email/payment job
Replies: 7
Views: 1400

no config for MAIL_FROM_NAME in order/email/payment job

Laravel version 9.37.0 , Aimeos version 2022.10.3 and PHP version 8.1.3 (Win) email is going from MAIL_FROM_ADDRESS but there is not using MAIL_FROM_NAME config, it is using the user name of MAIL_FROM_ADDRESS for MAIL_FROM_NAME . I checked vendor\aimeos\ai-controller-jobs\src\Controller\Jobs\Order\E...
by VirtualSpy
31 Oct 2022, 12:52
Forum: Laravel package
Topic: products is not listing in supplier from product import from csv
Replies: 3
Views: 832

Re: products is not listing in supplier from product import from csv

aimeos wrote: 31 Oct 2022, 10:35 Did you rebuild the product index afterwards?
No
by VirtualSpy
30 Oct 2022, 08:39
Forum: Laravel package
Topic: products is not listing in supplier from product import from csv
Replies: 3
Views: 832

products is not listing in supplier from product import from csv

Laravel version 9.37.0 , Aimeos version 2022.10.3 and PHP version 8.1.3 (Win) this is my csv item code,item label,item type,item status,text type,text content,text type,text content,text type,text content,text type,text content,Preview,Media URL,Preview,Media URL,Preview,Media URL,Preview,Media URL,...
by VirtualSpy
28 Oct 2022, 05:31
Forum: Laravel package
Topic: Route problem in multisite
Replies: 16
Views: 3173

Re: Route problem in multisite

Read: The root cause for the error is that the links to the auth routes are not generated by the airoute() function in your templates like here: https://github.com/aimeos/aimeos/blob/master/resources/views/auth/login.blade.php#L9 already airoute() function is here in this template <x-guest-layout> ...
by VirtualSpy
27 Oct 2022, 14:00
Forum: Laravel package
Topic: Route problem in multisite
Replies: 16
Views: 3173

Re: Route problem in multisite

Read: The root cause for the error is that the links to the auth routes are not generated by the airoute() function in your templates like here: https://github.com/aimeos/aimeos/blob/master/resources/views/auth/login.blade.php#L9 already airoute() function is here in this template <x-guest-layout> ...
by VirtualSpy
27 Oct 2022, 13:10
Forum: Laravel package
Topic: Route problem in multisite
Replies: 16
Views: 3173

Re: Route problem in multisite

These are the routes that causes problems because they contain the "site" route parameter: GET|HEAD {site}/confirm-password ............................................................. password.confirm › Auth\ConfirmablePasswordController@show POST {site}/confirm-password ..................