Search found 42 matches

by antonlinderer
21 May 2018, 08:27
Forum: Help
Topic: JSON for favorites
Replies: 1
Views: 1074

JSON for favorites

How do you retrieve a list of product favorites for a logged in user with JSON?
by antonlinderer
16 Feb 2018, 21:29
Forum: Help
Topic: override jqadm files
Replies: 3
Views: 1917

override jqadm files

how do i override jqadm files? In my case, I need to have a customised file for ext/ai-admin-jqadm/admin/jqadmin/sr/Admin/Product/Option/Config/Standard.php
by antonlinderer
12 Feb 2018, 15:08
Forum: Laravel package
Topic: How to move localhost Aimeos onto Production Server
Replies: 3
Views: 2304

Re: How to move localhost Aimeos onto Production Server

Best way is to use Git... there is a good document on this at: https://devmarketer.io/learn/deploy-lar ... ntu-nginx/
You might only need it from "Step 11: Install Git" onwards...
by antonlinderer
31 Jan 2018, 21:36
Forum: Laravel package
Topic: Account page access
Replies: 9
Views: 4630

Re: Account page access

for instance for login you need to use:
http://yourdomain.com/login
by antonlinderer
30 Jan 2018, 18:46
Forum: Laravel package
Topic: locale decimal separator
Replies: 2
Views: 1484

Re: locale decimal separator

yes that's a limitation. I need it for non-English and English values. So I might need to implement a locale check just before the value is represented to the user...
by antonlinderer
30 Jan 2018, 11:42
Forum: Laravel package
Topic: locale decimal separator
Replies: 2
Views: 1484

locale decimal separator

Is there a way to set up a locale in Aimeos Laravel for a decimal separator such as for typo3 as can be seen at: https://aimeos.org/docs/TYPO3/Configure ... d_currency ?
Thanks.
by antonlinderer
28 Jan 2018, 14:57
Forum: Laravel package
Topic: Account page access
Replies: 9
Views: 4630

Re: Account page access

Auth::routes() is just a shorthand for the routes: // Authentication Routes... Route::get('login', 'Auth\LoginController@showLoginForm')->name('login'); Route::post('login', 'Auth\LoginController@login'); Route::post('logout', 'Auth\LoginController@logout'); // Registration Routes... Route::get('reg...
by antonlinderer
28 Jan 2018, 11:57
Forum: Laravel package
Topic: custom logo issue for payment emails
Replies: 12
Views: 4408

Re: custom logo issue for payment emails

I have also added a pull request at https://github.com/aimeos/ai-swiftmailer as there is still an issue with correct detection of HTML and text for emails.
by antonlinderer
28 Jan 2018, 11:53
Forum: Laravel package
Topic: Account page access
Replies: 9
Views: 4630

Re: Account page access

you need to have in your routes/web.php file following line of code:
Auth::routes();
For more info goto: https://laravel.com/docs/5.5/authentica ... quickstart
by antonlinderer
26 Jan 2018, 11:56
Forum: Laravel package
Topic: custom logo issue for payment emails
Replies: 12
Views: 4408

Re: custom logo issue for payment emails

Sorry!... I didn't check it properly. Although the logo html is included it is using the wrong parameters. https://github.com/aimeos/ai-swiftmailer/blob/master/lib/custom/src/MW/Mail/Message/Swift.php#L206 should be: $part = new \Swift_EmbeddedFile( $data, $filename , $mimetype); according to: http:...