Search found 7914 matches

by aimeos
10 Oct 2017, 20:19
Forum: Help
Topic: Image Upload
Replies: 5
Views: 3721

Re: Image Upload

If you are able to successfully change the output of "public_path()" to your "./public_html" directory, then it will work because the filesystem configuration for image uploads is 'resource' => array( 'fs' => array( 'adapter' => 'Standard', 'basedir' => public_path(), 'tempdir' =...
by aimeos
10 Oct 2017, 20:12
Forum: Laravel package
Topic: My account page showing error.
Replies: 3
Views: 1484

Re: My account page showing error.

Is there a stack trace available in the madmin_log table?
by aimeos
10 Oct 2017, 20:11
Forum: Help
Topic: CSV Product Import not working
Replies: 32
Views: 26551

Re: CSV Product Import not working

Hm, both look OK and I ran a successful CSV file import with the same mapping and file (dev-master in my case).
Are the "Not imported: Array( ... )" messages the only error in the madmin_log table?
by aimeos
10 Oct 2017, 10:16
Forum: Help
Topic: CSV Product Import not working
Replies: 32
Views: 26551

Re: CSV Product Import not working

Your mapping is still not correct for the example file. You need exactly the same mapping as described in the documentation: https://aimeos.org/docs/Developers/Controller/Import_products_from_CSV#Default_mapping Also, make sure that you've configured https://aimeos.org/docs/Configuration/Core/contro...
by aimeos
10 Oct 2017, 09:13
Forum: Laravel package
Topic: Override ext/ai-laravel
Replies: 6
Views: 3337

Re: Override ext/ai-laravel

To enforce the correct order, please add "ai-laravel" to the "depends" section in the manifest.php of your project specific extension: 'depends' => array( 'aimeos-core', 'ai-admin-extadm', 'ai-admin-jqadm', 'ai-admin-jsonadm', 'ai-client-html', 'ai-client-jsonapi', 'ai-controller...
by aimeos
09 Oct 2017, 21:35
Forum: Laravel package
Topic: Paytm Integration
Replies: 10
Views: 3977

Re: Paytm Integration

Either some files has been left out when deploying everything on your live server or your Aimeos payment service provider configuration isn't the same on live.
by aimeos
09 Oct 2017, 21:32
Forum: Laravel package
Topic: Get site orders
Replies: 3
Views: 1645

Re: Get site orders

A site is defined by its siteid value and that depends on the site code you feed into the bootstrap method of the locale manager to set the locale item in the context object. The order manager will then fetch all orders that match the siteid value from the locale item.
by aimeos
09 Oct 2017, 21:30
Forum: TYPO3 extension
Topic: When we change the language in product detail page
Replies: 6
Views: 3317

Re: When we change the language in product detail page

Do you use RealUrl? Looks like a problem when RealUrl decodes the URL to the parameters of another URL.
by aimeos
09 Oct 2017, 21:27
Forum: Help
Topic: Image Upload
Replies: 5
Views: 3721

Re: Image Upload

by aimeos
08 Oct 2017, 16:09
Forum: Laravel package
Topic: need extra price for products
Replies: 5
Views: 2126

Re: need extra price for products

So the security price isn't optional. You can change the "preselect" setting for this attribute so customers are not able to de-select it: https://github.com/aimeos/ai-client-html/blob/master/client/html/templates/common/partials/attribute-default.php#L32 Alternatively, you can use the sum...