Re: Config changes for 0.16.3 ?

Benedikt Laube <[email protected]> Thu, 11 Aug 2005 13:48:58 +0200
Newsgroups gmane.comp.php.pear.liveuser
Message-ID <[email protected]>
On 8/11/05, Lukas Kahwe Smith <[email protected]> wrote:
> Benedikt Laube wrote:
> 
> > Okay. So without changing anything (config, database, scripts) save
> > upgrading from 0.16.2 I go from a working system to a non-working one
> > in about 3 seconds.
> 
> oh .. could you send me your config array (minus any sensitive
> information) .. that should help me find the bug ..

Hi Lukas,

thank you for offering! Here it is:

$LUOptions = array(
        'autoInit' => false,
        'session'  => array(
           'name'    => 'PHPSESSION',
           'varname' => 'LUCOOKIE'
        ),
        'login' => array(
          'force'    => false,
        ),
        'logout' => array(
          'destroy'  => true
        ),
        'authContainers' => array(
            'DB' => array(
                'type'            => 'DB',
                'loginTimeout'    => 0,
                'expireTime'      => 3600,
                'idleTime'        => 1800,
                'updateLastLogin' => false,
                'allowDuplicateHandles' => 1,
                'storage' => array(
                    'prefix'          => 'my_liveuser_',
                    'dsn'             => $dsn
                    ),
            ),
        ),
        'permContainer' => array(
          'type'     => 'Medium',
          'storage'  => array(
                'DB' => array(
                  'dsn'       => $dsn,
                  'prefix'    => 'my_liveuser_',
                ),
            ),
        )
    );

TIA!
Benedikt