Search found 122 matches

by VirtualSpy
13 Dec 2022, 10:20
Forum: Laravel package
Topic: Route problem in multisite
Replies: 16
Views: 3163

Re: Route problem in multisite

This is usually the case if the user has been created for a different site and is bound to that site ID now instead of the current site (see users.siteid column for that user). You can set the site ID of the user to an empty string to make that account available for all sites. please tell me how ca...
by VirtualSpy
13 Dec 2022, 10:06
Forum: Laravel package
Topic: overwrite base class
Replies: 3
Views: 1180

Re: overwrite base calss

aimeos wrote: 13 Dec 2022, 09:48 In PHP it's not possible to overwrite base classes but you can overwrite the translation and use another message string:
https://aimeos.org/docs/latest/laravel/ ... anslations
but i want to change or remove 404 code from Exception.....please tell me how can i change
by VirtualSpy
13 Dec 2022, 09:41
Forum: Laravel package
Topic: overwrite base class
Replies: 3
Views: 1180

overwrite base class

laravel version 9.36.4 , Aimeos version 2022.10.3 and PHP version 8.1.3 (Win) can i overwrite vendor\aimeos\aimeos-core\src\MShop\Common\Manager\Base.php this file from extension without this Warning: Ambiguous class resolution, "Aimeos\MShop\Common\Manager\Base" was found 2x: in "D:/...
by VirtualSpy
13 Dec 2022, 06:34
Forum: Laravel package
Topic: Bug with number Formatter
Replies: 2
Views: 511

Re: Bug with number Formatter

Hello, I install the platform on a xammp server, and when i visit the site, show me this error on code., Aimeos\MW\View\Helper\Number\Locale::__construct G:\sitios\server\xammp\htdocs\aimeos\myshop\vendor\aimeos\aimeos-core\lib\mwlib\src\MW\View\Helper\Number\Locale.php:39 Any Help will be apprecia...
by VirtualSpy
12 Dec 2022, 06:34
Forum: Laravel package
Topic: Route problem in multisite
Replies: 16
Views: 3163

Re: Route problem in multisite

Don't know where the error exactly is located. E-mail verification is something Laravel does internally and without much access from outside. You could try to replace this in your routes/web.php: Route::group($conf ?? [], function () { require __DIR__ . '/auth.php'; }); //replace with require __DIR...
by VirtualSpy
08 Dec 2022, 06:41
Forum: Laravel package
Topic: User registration without {site}
Replies: 8
Views: 2328

Re: User registration without {site}

Is there a way to enable user registration, so people can register before they make a purchase? just use this route @if (Route::has('register')) <a class="underline text-sm text-gray-600 hover:text-gray-900" href="{{ airoute('register') }}"> {{ __('Create Account') }} </a> @endi...
by VirtualSpy
06 Dec 2022, 13:36
Forum: Laravel package
Topic: index tables in database
Replies: 5
Views: 1184

Re: index tables in database

The most important record to show products in the frontend is the one in mshop_index_catalog because a category needs to be assigned to every product to be shown. yes , when i am inserting catid in mshop_index_catalog it is automatically convert like this "9c626db5-7561-11ed-bf9b-28f10e05105d&...
by VirtualSpy
05 Dec 2022, 06:03
Forum: Laravel package
Topic: index tables in database
Replies: 5
Views: 1184

Re: index tables in database

Yes, but you may have to clear the Aimeos content cache at least for the page where it should show up: https://github.com/aimeos/aimeos-core/blob/master/src/MShop/Index/Manager/Standard.php#L394 or for all pages: https://github.com/aimeos/aimeos-core/blob/master/src/MShop/Index/Manager/Standard.php...
by VirtualSpy
03 Dec 2022, 02:12
Forum: Laravel package
Topic: On multilocale unable to access /admin
Replies: 14
Views: 3899

Re: On multilocale unable to access /admin

Use true and false instead of 1 and 0
by VirtualSpy
02 Dec 2022, 14:52
Forum: Laravel package
Topic: index tables in database
Replies: 5
Views: 1184

index tables in database

Laravel version 9.37.0 , Aimeos version 2022.10.3 and PHP version 8.1.3 (Win)

is it possible to insert data in index tables without using "index/rebuild" job
I inserted data manually in index table but product is still not showing on front end.