Search found 8011 matches

by aimeos
14 Mar 2021, 15:08
Forum: Laravel package
Topic: Admin commission in sites
Replies: 3
Views: 1416

Re: Admin commission in sites

That depends on your payment gateway and Stripe Connect can do split payments for example.
by aimeos
14 Mar 2021, 14:59
Forum: Laravel package
Topic: Custom domain for each sites
Replies: 8
Views: 6901

Re: Custom domain for each sites

If you enable one or both of these settings

Code: Select all

SHOP_MULTISHOP=true
SHOP_REGISTRATION=true
you also need to change the route config in the if-block, not in the block that's part of the return statement.
by aimeos
14 Mar 2021, 14:57
Forum: Laravel package
Topic: Order Confirmation Emails Not Sending due to TCP Timeout on port 587
Replies: 4
Views: 2345

Re: Order Confirmation Emails Not Sending due to TCP Timeout on port 587

If there's a timeout when connecting to that port and no e-mails are sent at all, check if the PHP processes are allowed to connect to that port and no SELinux security rules are forbidding that.
by aimeos
14 Mar 2021, 14:55
Forum: Laravel package
Topic: max_user_connections problem preventing users from completing orders
Replies: 5
Views: 1998

Re: max_user_connections problem preventing users from completing orders

Aimeos doesn't use that much connections at all. It uses max. 1-2 connections per request depending on the task. Most likely PHP-FPM isn't closing the connections after the request is finished - especially as you've said you updated the OS but not Aimeos. Check if persistant connections are enabled ...
by aimeos
14 Mar 2021, 14:49
Forum: Help
Topic: Return random result into product list APIs
Replies: 1
Views: 1104

Re: Return random result into product list APIs

It's difficult to get real random results fast from a database. This articles describes how it can be achieved: http://jan.kneschke.de/projects/mysql/order-by-rand/ To implement that in Aimeos, you can add a searchRandom() method to your own product manager and use that in your own product endpoint ...
by aimeos
13 Mar 2021, 16:07
Forum: Laravel package
Topic: Custom domain for each sites
Replies: 8
Views: 6901

Re: Custom domain for each sites

First, "www.seller1.com" is not the same as "seller1.com"!

To configure custom domain routing read:
https://aimeos.org/docs/latest/laravel/ ... he-routing
by aimeos
13 Mar 2021, 16:05
Forum: Help
Topic: change direction-right to left
Replies: 6
Views: 4527

Re: change direction-right to left

If you use composer 2.x, executing composer req aimeos/aimeos-laravel:dev-master php artisan aimeos:setup should do the job. Note, that you will upgrade to a new major version (2020.10 -> 2021.x) which includes breaking changes that may not be backward compatible to the code you've written to extend...
by aimeos
12 Mar 2021, 08:48
Forum: TYPO3 extension
Topic: Aimeos mobile app
Replies: 5
Views: 3896

Re: Aimeos mobile app

Don't know if this it's possible to avoid the session cookie. You will need another session token and you should check if there's a Laravel package that offers such functionality.
by aimeos
12 Mar 2021, 08:06
Forum: Help
Topic: Database Migration Failure
Replies: 1
Views: 1143

Re: Database Migration Failure

Your database doesn't accept connections from user "dev" without password. Add a user with a password to your MySQL server and set the user/password in your Laravel .env file in the application root directory: ALTER USER 'dev'@'localhost' IDENTIFIED BY 'secret'; GRANT ALL ON *.* TO 'dev'@'...
by aimeos
12 Mar 2021, 07:33
Forum: Laravel package
Topic: max_user_connections problem preventing users from completing orders
Replies: 5
Views: 1998

Re: max_user_connections problem preventing users from completing orders

If PHP isn't the issue, check MariaDB and other updated packages.