Search found 95 matches

by peter69
12 Jun 2023, 05:41
Forum: Laravel package
Topic: After logged in second site error shows
Replies: 3
Views: 5811

Re: After logged in second site error shows

Hello!

Is there any configuration to allow users to log in with the same account on all sites?

Greetings,
by peter69
05 Jun 2023, 07:26
Forum: Laravel package
Topic: Multishop Configuration Issue: Overriding Locale Settings in Laravel Aimeos
Replies: 10
Views: 5893

Re: Multishop Configuration Issue: Overriding Locale Settings in Laravel Aimeos

It doesn't work either, I get a 404 error. I share with you my configurations: config/shop.php $prefix = config( 'app.shop_multilocale' ) ? '{locale}/' : ''; $config = [ 'apc_enabled' => false, // enable for maximum performance if APCu is available 'apc_prefix' => 'aimeos:', // prefix for caching co...
by peter69
05 Jun 2023, 07:03
Forum: Laravel package
Topic: Multishop Configuration Issue: Overriding Locale Settings in Laravel Aimeos
Replies: 10
Views: 5893

Re: Multishop Configuration Issue: Overriding Locale Settings in Laravel Aimeos

It is set to true. Since I have configured two languages (spanish and english)
by peter69
05 Jun 2023, 06:39
Forum: Laravel package
Topic: Multishop Configuration Issue: Overriding Locale Settings in Laravel Aimeos
Replies: 10
Views: 5893

Re: Multishop Configuration Issue: Overriding Locale Settings in Laravel Aimeos

Hello, That's exactly how I have it configured but it doesn't work either: routes/web.php: <?php use Illuminate\Support\Facades\Request; use Illuminate\Support\Facades\Route; /* |-------------------------------------------------------------------------- | Web Routes |--------------------------------...
by peter69
04 Jun 2023, 18:07
Forum: Laravel package
Topic: Multishop Configuration Issue: Overriding Locale Settings in Laravel Aimeos
Replies: 10
Views: 5893

Re: Multishop Configuration Issue: Overriding Locale Settings in Laravel Aimeos

I have noticed that it only works if I access it in the following way: https://shop2.mydomain.com/?locale=es&site=shop2.mydomain.com Certainly, this is not a user-friendly URL. What I want is for https://shop2.mydomain.com to correctly display the catalog-home component of the theme I have creat...
by peter69
04 Jun 2023, 17:32
Forum: Laravel package
Topic: Multishop Configuration Issue: Overriding Locale Settings in Laravel Aimeos
Replies: 10
Views: 5893

Re: Multishop Configuration Issue: Overriding Locale Settings in Laravel Aimeos

Thank you for the provided information. However, it seems that when I access https://shop2.mydomain.com, I still see the template of the theme configured for https://mydomain.com (shop1). The template/theme I have created and configured for shop2 doesn't appear. Interestingly, on other pages such as...
by peter69
04 Jun 2023, 06:11
Forum: Laravel package
Topic: Multishop Configuration Issue: Overriding Locale Settings in Laravel Aimeos
Replies: 10
Views: 5893

Multishop Configuration Issue: Overriding Locale Settings in Laravel Aimeos

Hello Laravel Aimeos! I am developing a " multishop " project. I have created two stores: shop1 and shop2. The shop1 store is the default one, which should be displayed at https://mydomain.com, and shop2 should be displayed at https://shop2.mydomain.com. I have followed the steps mentioned...
by peter69
02 Jun 2023, 02:24
Forum: Laravel package
Topic: laravel project still alive?
Replies: 2
Views: 2014

Re: laravel project still alive?

I closely follow the updates, and the Aimeos team consistently commits changes. The community also actively supports the project by contributing improvements and fixes.

I use Laravel Aimeos in my e-commerce projects, and I firmly believe that it has a bright present and future!
by peter69
08 Mar 2023, 05:31
Forum: Laravel package
Topic: mshop_customer table and user role/group
Replies: 1
Views: 599

mshop_customer table and user role/group

Hello Aimeos! I have some questions, There is a table which is called "mshop_customer", I see that this table is not being taken care of as the users are stored in the "users" table. This is the expected behavior? Also, in the "customers" module all users are listed (in...
by peter69
17 Feb 2023, 05:48
Forum: Laravel package
Topic: Generate Product URL in Laravel Controller
Replies: 8
Views: 3852

Re: Generate Product URL in Laravel Controller

In case someone finds it useful, to obtain the URL of a category in a Controller, you can do it in the following way: $context = app('aimeos.context')->get(); $manager = \Aimeos\MShop::create( $context, 'catalog' ); $catalog_code = 'home'; $category = $manager->find($catalog_code, ['text']); $url = ...