Search found 35 matches

by AmzoooJibal
13 Mar 2021, 21:15
Forum: Laravel package
Topic: Custom domain for each sites
Replies: 8
Views: 6776

Re: Custom domain for each sites

ok i found the problem, it's not verry calire in documentaion so i have changed:

Code: Select all

'default' => ['domain' => '{site}', 'prefix' => 'shop', 'middleware' => ['web']],
to 'default' => ['domain' => '{site}', 'prefix' => '', 'middleware' => ['web']],
and now its working
by AmzoooJibal
13 Mar 2021, 20:10
Forum: Laravel package
Topic: Admin commission in sites
Replies: 3
Views: 1368

Admin commission in sites

Hello,
can admin get a commission for each sales made by other sites ?
by AmzoooJibal
13 Mar 2021, 18:16
Forum: Laravel package
Topic: Custom domain for each sites
Replies: 8
Views: 6776

Re: Custom domain for each sites

Hello, i hve read this link many times and i have added this to my config/shop.php : <?php $routes = []; if (config('app.shop_multishop') || config('app.shop_registration')) { $routes = [ 'routes' => [ 'admin' => ['prefix' => 'admin', 'middleware' => ['web', 'verified']], 'jqadm' => ['prefix' => 'ad...
by AmzoooJibal
13 Mar 2021, 12:33
Forum: Laravel package
Topic: Custom domain for each sites
Replies: 8
Views: 6776

Re: Custom domain for each sites

my conf/shop.php is like this: <?php $routes = []; if( config( 'app.shop_multishop' ) || config( 'app.shop_registration' ) ) { $routes = ['routes' => [ 'admin' => ['prefix' => 'admin', 'middleware' => ['web', 'verified']], 'jqadm' => ['prefix' => 'admin/{site}/jqadm', 'middleware' => ['web', 'auth',...
by AmzoooJibal
12 Mar 2021, 20:19
Forum: Laravel package
Topic: Custom domain for each sites
Replies: 8
Views: 6776

Custom domain for each sites

Hello, i have installed aimeos in xampp in local machine, then I have created a site with this commande: php artisan aimeos:setup seller1.com i have configured my host and vhots like this: host: 127.0.0.1 www.seller1.com vhost: <Directory "D:/aimeos/myshop/public"> Options Indexes FollowSy...