Login
Let's imagine the constellation, that you like to access |es|f| from:
- any computer, with the installed authentication of |es|f|
- a specific computer without the question for user and password (automatic login)
- 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
- IP can here be
- a full qualified address like '192.168.1.1'
- a range like '192.168.1.*'
- USER is your eBay/|es|f| account name
- PASSWORD is your |es|f| password, not your eBay password!
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.
- Ensure, the the access to your |es|f| installation is possible only with your used authentication method, e.g. Apaches mod_auth.
- Login your account automatic from any ip address using method with the definition of 'IP' = '*.*.*.*'