Difference between revisions of "TubeStudio Authentication"

From TMM Wiki
Jump to navigationJump to search
 
(4 intermediate revisions by the same user not shown)
Line 3: Line 3:
 
}}
 
}}
  
TubeStudio provides a few default authentication methods.  Users can be authenticated off of the internal database, an external NATS system, or through the HTTP headers (mysql_auth, httpasswd,..).  Below are the various settings and their descriptions for authenticating users.  
+
TubeStudio provides a few default authentication methods.  Users can be authenticated off of the internal database, an external NATS system, an external database, or through the HTTP headers ( your current mysql_auth, httpasswd,ext. setup).  Below are the various settings and their descriptions for authenticating users.
 +
 
 +
These settings can be edited globally for all sites on the [[TubeStudio Configuration Admin|Configuration Admin]] or site specific in the [[TubeStudio Site Configuration|site configuration]] for each individual site.
  
  
Line 15: Line 17:
  
 
== External through NATS ==  
 
== External through NATS ==  
Selecting this method will use the NATS database for logging users in.  This option is only intended for program owners and not affiliates.  On the first login, certain information will be transfered over and stored locally, however all logins will refer to the NATS database for the username and password.  Be sure to choose the correct version for your NATS install (v3 or v4).
+
Selecting this method will use the NATS database for authenticating users.  This option is only intended for NATS program owners and not affiliates.  All login attempts will always refer to the external database for the correct username and password.  Be sure to choose the correct version for your NATS install (v3 or v4).
  
 
If you are using this option then you will also need to fill in the values for:
 
If you are using this option then you will also need to fill in the values for:
 
* NATS_AUTH_HOST  
 
* NATS_AUTH_HOST  
 
** Hostname for your NATS database  
 
** Hostname for your NATS database  
 +
** e.g. "localhost"
 
* NATS_AUTH_DB
 
* NATS_AUTH_DB
 
** Database name your NATS database  
 
** Database name your NATS database  
 +
** e.g. "my_nats_database"
 
* NATS_AUTH_USER
 
* NATS_AUTH_USER
 
** Username for your NATS database  
 
** Username for your NATS database  
 
* NATS_AUTH_PASS
 
* NATS_AUTH_PASS
 +
** Password for your NATS database
 +
* NATS_AUTH_SITEID
 
** Password for your NATS database  
 
** Password for your NATS database  
  
 
If you TubeStudio and NATS installations are on different servers, be sure to enter the correct hostname and make sure that the database allows the external communication through the username and password provided. It is recommended that you set up a new username and password that only has SELECT privileges on the member tables.
 
If you TubeStudio and NATS installations are on different servers, be sure to enter the correct hostname and make sure that the database allows the external communication through the username and password provided. It is recommended that you set up a new username and password that only has SELECT privileges on the member tables.
 +
 +
== External through Other Database ==
 +
Selecting this method will use a generic external database for authenticating users.  All login attempts will always refer to the external database for the correct username and password.
 +
 +
If you are using this option then you will also need to fill in the values for:
 +
* OTHER_AUTH_HOST
 +
** Hostname for your other database
 +
** e.g. "localhost"
 +
* OTHER_AUTH_DB
 +
** Database name your other database
 +
** e.g. "my_database"
 +
* OTHER_AUTH_USER
 +
** Username for your other database
 +
* OTHER_AUTH_PASS
 +
** Password for your other database
 +
* OTHER_AUTH_MISC_QUERY
 +
** A miscellaneous query that helps identify the user.
 +
** You MUST include the preceding "AND"
 +
** e.g. "AND siteid=2"
 +
* OTHER_AUTH_TABLE
 +
** Table name of where to find your external users
 +
** e.g. "members"
 +
* OTHER_AUTH_USER_FIELD
 +
** The username field in your external table
 +
** e.g. "user"
 +
* OTHER_AUTH_PASS_FIELD
 +
** The password field in your external table
 +
** e.g. "pass"
 +
 +
If you TubeStudio installation and other database are on different servers, be sure to enter the correct hostname and make sure that the database allows the external communication through the username and password provided. It is recommended that you set up a new username and password that only has SELECT privileges on the member's table.

Latest revision as of 02:57, 4 February 2010

TubeStudio
Configuration Admin
Configuration Admin
Site Specific Configuration
SEO Links
Authentication Methods


TubeStudio provides a few default authentication methods. Users can be authenticated off of the internal database, an external NATS system, an external database, or through the HTTP headers ( your current mysql_auth, httpasswd,ext. setup). Below are the various settings and their descriptions for authenticating users.

These settings can be edited globally for all sites on the Configuration Admin or site specific in the site configuration for each individual site.


Internal Authentication

This is the default authentication method for TubeStudio. All user data is stored in the local database and inserted when a user goes through the signup process. When using this method nothing else needs to be done by you.


External through HTTP Headers

Select his option if you use an external authentication system such as mysql auth or httpasswd files.


External through NATS

Selecting this method will use the NATS database for authenticating users. This option is only intended for NATS program owners and not affiliates. All login attempts will always refer to the external database for the correct username and password. Be sure to choose the correct version for your NATS install (v3 or v4).

If you are using this option then you will also need to fill in the values for:

  • NATS_AUTH_HOST
    • Hostname for your NATS database
    • e.g. "localhost"
  • NATS_AUTH_DB
    • Database name your NATS database
    • e.g. "my_nats_database"
  • NATS_AUTH_USER
    • Username for your NATS database
  • NATS_AUTH_PASS
    • Password for your NATS database
  • NATS_AUTH_SITEID
    • Password for your NATS database

If you TubeStudio and NATS installations are on different servers, be sure to enter the correct hostname and make sure that the database allows the external communication through the username and password provided. It is recommended that you set up a new username and password that only has SELECT privileges on the member tables.

External through Other Database

Selecting this method will use a generic external database for authenticating users. All login attempts will always refer to the external database for the correct username and password.

If you are using this option then you will also need to fill in the values for:

  • OTHER_AUTH_HOST
    • Hostname for your other database
    • e.g. "localhost"
  • OTHER_AUTH_DB
    • Database name your other database
    • e.g. "my_database"
  • OTHER_AUTH_USER
    • Username for your other database
  • OTHER_AUTH_PASS
    • Password for your other database
  • OTHER_AUTH_MISC_QUERY
    • A miscellaneous query that helps identify the user.
    • You MUST include the preceding "AND"
    • e.g. "AND siteid=2"
  • OTHER_AUTH_TABLE
    • Table name of where to find your external users
    • e.g. "members"
  • OTHER_AUTH_USER_FIELD
    • The username field in your external table
    • e.g. "user"
  • OTHER_AUTH_PASS_FIELD
    • The password field in your external table
    • e.g. "pass"

If you TubeStudio installation and other database are on different servers, be sure to enter the correct hostname and make sure that the database allows the external communication through the username and password provided. It is recommended that you set up a new username and password that only has SELECT privileges on the member's table.