I think that this:

> PerlSetVar => {
> Auth_DBI_data_source => 'dbi:Pg:dbname=reckdb',
> Auth_DBI_username => 'dvicci',
> Auth_DBI_pwd_table => 'user_profile',
> Auth_DBI_uid_field => 'user_username',
> Auth_DBI_pwd_field  => 'user_password',
> Auth_DBI_pwd_whereclause => '"user_usertype>0"',
> Auth_DBI_encrypted => 'off',
> },

should look more like this:

    PerlSetVar => [
        [ Auth_DBI_data_source => 'dbi:Pg:dbname=reckdb' ],
        [ Auth_DBI_username => 'dvicci' ],
        [ Auth_DBI_pwd_table => 'user_profile' ],
        [ Auth_DBI_uid_field => 'user_username' ],
        [ Auth_DBI_pwd_field  => 'user_password' ],
        [ Auth_DBI_pwd_whereclause => '"user_usertype>0"' ],
        [ Auth_DBI_encrypted => 'off' ],
    ],

That's the format I use when using PerlSetVar.

bye,
Ben

Reply via email to