Search found 8466 matches

by aimeos
14 Feb 2025, 11:15
Forum: Help
Topic: [SOLVED] About "open_basedir"
Replies: 3
Views: 29

Re: About "open_basedir"

According to modern security requirements, the "open_basedir" parameter is active by default on most systems. In short, this option restricts the ability to work within a directory. It's a mistake to believe that open_basedir enhances security of PHP more than marginally. Instead, it's kn...
by aimeos
14 Feb 2025, 09:18
Forum: Help
Topic: [SOLVED] About "open_basedir"
Replies: 3
Views: 29

Re: About "open_basedir"

It's very problematic and may lead to Aimeos not working properly!
by aimeos
13 Feb 2025, 11:55
Forum: Help
Topic: Custom Gift Card Implementation Help
Replies: 1
Views: 203

Re: Custom Gift Card Implementation Help

There's already a CSV upload available in the backend:
https://aimeos.org/docs/latest/manual/c ... csv-upload

You can upload your codes there and they will be available for anyone who knows the code.
by aimeos
13 Feb 2025, 11:11
Forum: Help
Topic: [SOLVED] How to install gigacommerce (Elasticsearch) at second server
Replies: 13
Views: 1860

Re: [SOLVED] How to install gigacommerce (Elasticsearch) at second server

Hosting allows to create an internal network infrastructure to combine two virtual servers (Aimeos + Elasticsearch) into a separate personal network. Only the Aimeos server will be connected to the Internet separately. Yes, that's best. Question number 1: as I understand it, I don't need to configu...
by aimeos
13 Feb 2025, 11:04
Forum: Help
Topic: [SOLVED] How to install gigacommerce (Elasticsearch) at second server
Replies: 13
Views: 1860

Re: How to install gigacommerce (Elasticsearch) at second server

ЕвгенияСемихова(ИПСемиховаЕ.А.) wrote: 11 Feb 2025, 11:09 I think now work good, becouse new ID of items is very strange (at first look): like
Product 32-x9JQB5vAqH9S6BDfrShirts for women Default
Yes, ElasticSearch IDs are hashes.
by aimeos
13 Feb 2025, 11:01
Forum: Laravel package
Topic: switching logger to monolog
Replies: 2
Views: 141

Re: switching logger to monolog

You need to overwrite the addLogger() method in the "aimeos.context" service: - https://github.com/aimeos/aimeos-laravel/blob/master/src/ShopServiceProvider.php#L83-L85 - https://github.com/aimeos/aimeos-laravel/blob/master/src/Base/Context.php#L160-L165 There, you can add your Monolog log...
by aimeos
12 Feb 2025, 08:18
Forum: Help
Topic: Adding more sites
Replies: 7
Views: 933

Re: Adding more sites

dala wrote: 11 Feb 2025, 18:50 Say, for example, I create a new site with sitecode newsite.com; is it possible to change this sitecode at a later time if I want to use another domain-name for the site?
Yes, at any time.
by aimeos
11 Feb 2025, 12:23
Forum: TYPO3 extension
Topic: Categories instead of Products? (trying to add multiple products to category)
Replies: 15
Views: 16013

Re: Categories instead of Products? (trying to add multiple products to category)

Thank you for your bug report, it was very helpful to find the problem!
The issue is now fixed in the latest aimeos/ai-admin-jqadm package. Please run "composer up"
by aimeos
11 Feb 2025, 11:08
Forum: Help
Topic: [SOLVED] How to install gigacommerce (Elasticsearch) at second server
Replies: 13
Views: 1860

Re: How to install gigacommerce (Elasticsearch) at second server

ЕвгенияСемихова(ИПСемиховаЕ.А.) wrote: 11 Feb 2025, 10:52 Need to understand how I can check all - is this the finish for connection gigacommerce?
To test connection latency, you can use the ping command from the CLI.
by aimeos
11 Feb 2025, 10:48
Forum: Help
Topic: [SOLVED] How to install gigacommerce (Elasticsearch) at second server
Replies: 13
Views: 1860

Re: How to install gigacommerce (Elasticsearch) at second server

This is your error: 'es' => [ 'hosts' => [ '194.87.220.222/:9200', ], It must be: 'es' => [ 'hosts' => [ '194.87.220.222:9200', ], The slash (/) is wrong and leads to not connecting to port 9200. The ElasticSearch server should be close to your web server in terms of latency. If they are far away, i...