From: Gary W. S. <ga...@pr...> - 2007-04-04 14:39:06
|
> #users.where_clause =3D domainusers.active =3D 1 and = domains.active=3D1 and > servers.active =3D 1 and servers.server_name in ('servername','*'); >=20 > #users.table =3D domainusers inner join domains on = domainusers.domain_id > =3D domains.domain_id inner join servers on domains.server_id =3D > servers.server_id; users.table =3D users; >=20 > users.user_column =3D scalix; > users.password_column =3D pwd; > #users.status_column =3D 'A'; Why are you commenting out the where, table and status_columns? Leave users.status_column =3D 'A' in place. It will have no impact but I believe it's a required field. You commented out the table and where clause but didn't put another one in. =20 |