Page 2 of 2

Re: user gets account creation email but cannot login

Posted: 05 Sep 2016, 19:01
by brunojti
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!