user gets account creation email but cannot login

Help for integrating the Laravel package
Forum rules
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
brunojti
Posts: 27
Joined: 29 Jul 2016, 14:02

Re: user gets account creation email but cannot login

Post by brunojti » 05 Sep 2016, 19:01

I was missing the manager...

config/shop.php:

Code: Select all

'mshop' => array(
        'order' => array(
            'manager' => array(
                'base' => array(
                    'address' => array(
                        'name' => 'MyManager'
                    )
                )
            )
        ),

Now my custom manager and item is getting called.

The address object here ( https://github.com/aimeos/ai-controller ... d.php#L292) is an instance of my custom manager.

Yay!

Post Reply