Search found 7925 matches

by aimeos
13 May 2024, 06:29
Forum: Laravel package
Topic: New added product preview image (in 720) is not shown in product details page.
Replies: 8
Views: 5427

Re: New added product preview image (in 720) is not shown in product details page.

You can influence what the browser is choosing by removing e.g. the 960px image size to force the browser to use the next best one, which is 720px in your case.
by aimeos
13 May 2024, 06:27
Forum: Help
Topic: Import product on database (SQL Directly)
Replies: 1
Views: 56

Re: Import product on database (SQL Directly)

You have to index your products so they are found. Assuming you are using Laravel, execcute this command:

Code: Select all

php artisan aimeos:jobs index/rebuild
by aimeos
12 May 2024, 13:04
Forum: Laravel package
Topic: New added product preview image (in 720) is not shown in product details page.
Replies: 8
Views: 5427

Re: New added product preview image (in 720) is not shown in product details page.

Everything is correct but the browser selects itself which image it will use. You can only influence that partially with a different imageset-sizes configuration.
by aimeos
10 May 2024, 07:16
Forum: TYPO3 extension
Topic: CSV Stock Import Duplicate Entry Error
Replies: 3
Views: 4413

Re: CSV Stock Import Duplicate Entry Error

Would be interesting to find out why and what line is causing that.
by aimeos
09 May 2024, 07:51
Forum: Laravel package
Topic: SQLSRV configuration.
Replies: 3
Views: 3896

Re: SQLSRV configuration.

The Aimeos database layer uses PDO directly. Check the internet if there are any special settings necessary for SQL server connections with TLS enabled.
by aimeos
09 May 2024, 07:46
Forum: Laravel package
Topic: New added product preview image (in 720) is not shown in product details page.
Replies: 8
Views: 5427

Re: New added product preview image (in 720) is not shown in product details page.

> Can you share the complete configuration in your controller.php file? - Yes. I share the config/controller.php file in attachments. Configuration looks OK. > Did you overwrite the catalog/detail template? - Yes. We are using our own theme in package and the template was modified by another develo...
by aimeos
08 May 2024, 17:40
Forum: Laravel package
Topic: SQLSRV configuration.
Replies: 3
Views: 3896

Re: SQLSRV configuration.

The unit tests use this configuration:
https://github.com/aimeos/aimeos-core/b ... ig.yml#L25
by aimeos
07 May 2024, 09:23
Forum: Laravel package
Topic: New added product preview image (in 720) is not shown in product details page.
Replies: 8
Views: 5427

Re: New added product preview image (in 720) is not shown in product details page.

Can you share the complete configuration in your controller.php file? Did you overwrite the catalog/detail template? After you've changed the preview file sizes, you have to regenerate the preview images to take effect by executing: php artisan aimeos:jobs media/scale When you upload images in the a...
by aimeos
06 May 2024, 09:22
Forum: Help
Topic: upload image by api laravel controller
Replies: 1
Views: 2889

Re: upload image by api laravel controller

Expect a PSR-7 request in your action instead of a Laravel request. Then, you also get a PSR-7 file upload object which you can use:
https://laravel.com/docs/11.x/requests#psr7-requests