Search found 45 matches

by alababdiy
08 Jun 2024, 09:05
Forum: Laravel package
Topic: Order.id not found
Replies: 4
Views: 9070

Re: Order.id not found

Is there a way to force $context to set a specific site ID so I can limit my search to orders within that site or all sites? i try to make reset order SiteID on $context by this line $context->setLocale( app( 'aimeos.locale' )->getBackend( $context, $siteID ) ); but still showing Item with ID "...
by alababdiy
06 Jun 2024, 10:38
Forum: Laravel package
Topic: Order.id not found
Replies: 4
Views: 9070

Re: Order.id not found

{ //in webhook contraller $context = app('aimeos.context')->get(); $manager = \Aimeos\MShop::create($context, 'order'); $order = $manager->get($orderId); } i still got "order.id" not found ( even id is exsit ) Is it possible to retrieve an order without requiring user login? , Because it'...
by alababdiy
05 Jun 2024, 17:05
Forum: Help
Topic: Is Aimeos Fully Ready for Multiple Instances?
Replies: 1
Views: 4072

Is Aimeos Fully Ready for Multiple Instances?

Hello, I am considering deploying multiple instances of Aimeos for a project. I wanted to know if Aimeos is fully prepared to handle multiple instances out of the box, or if there are certain logical code parts that I need to modify to ensure proper functionality. Any insights or experiences with th...
by alababdiy
21 Apr 2024, 08:24
Forum: Laravel package
Topic: Extend php artisan aimeos:setup <site code> [<template site>]
Replies: 3
Views: 17308

Re: Extend php artisan aimeos:setup <site code> [<template site>]

The link is no longer working (404 - page not found). Is there an alternative link?
by alababdiy
17 Feb 2024, 08:28
Forum: Help
Topic: Restricting Users from Signing Up Across Multiple Stores
Replies: 6
Views: 28716

Re: Restricting Users from Signing Up Across Multiple Stores

What is an easy way to perform an inner join between the Customer and CustomerSide (New Table) here? If I create the CustomerSite Table: return array( 'table' => array( '' => function (\Aimeos\Upscheme\Schema\Table $table) { $table->engine = 'InnoDB'; $table->int('customerid'); $table->string('sitei...
by alababdiy
15 Feb 2024, 17:36
Forum: Help
Topic: Restricting Users from Signing Up Across Multiple Stores
Replies: 6
Views: 28716

Re: Restricting Users from Signing Up Across Multiple Stores

Users should be able to buy from all stores
Yes
vendors should not see the users in the Customer panel
Each vendor ( site admins ) should still see his customers ( customers they already sign in / sign up on his store "only" )
by alababdiy
11 Feb 2024, 10:32
Forum: Help
Topic: Restricting Users from Signing Up Across Multiple Stores
Replies: 6
Views: 28716

Restricting Users from Signing Up Across Multiple Stores

I'm currently working with Aimeos and facing an issue regarding user signups across multiple stores. The requirement is to ensure that a user cannot sign up for multiple stores since there is a single siteid field in user schema. While I can make the siteid field empty to address the signup issue, t...