Login

Let's imagine the constellation, that you like to access |es|f| from:

  1. any computer, with the installed authentication of |es|f|
  2. a specific computer without the question for user and password (automatic login)
  3. any computer, with your own authentication method (e.g. Apaches mod_auth)

1. Default authentication

Nothing to do, this is the default method.

2. Automatic login

Define a set of ip, user and password combinations, which should loged in automatic into |es|f|

Add the following code (with your data)

setModuleVar( 'Login', 'AutoLogin', array(
  array( 'IP'       => '...',
         'USER'     => '...',
         'PASSWORD' => '...' ),
);

to extra/common.php

Please keep in mind, not to overlap ip addresses/ranges, the algorithm gets the first user, thats ip mask matches ;-) 

3. Other authentication method

This is a combination of the "Automatic login" with your own method.