Difference between revisions of "NATS4 Create Member Auth View"

From TMM Wiki
Jump to navigationJump to search
(Created page with "Creating a Mysql View allows for the list of active members be directly related to the member table rather than have this information storred in a separate table. To create a...")
(No difference)

Revision as of 23:32, 9 January 2013

Creating a Mysql View allows for the list of active members be directly related to the member table rather than have this information storred in a separate table. To create a Mysql view, either have you or your host run the following query:

CREATE VIEW member_auth_view AS SELECT member.memberid,member.username,member.password,member.cryptpass,member.siteid,member.networkid,identifier.tourid,identifier.optionid,identifier.programid,member.trial,member.token FROM member LEFT JOIN identifier ON member.identid=identifier.identid WHERE status=1

Once the View is created, authentication of your members area would look to this new table view "member_auth_view" rather than looking to "member_auth".