User Tools

Site Tools


documentation:errors:adminauthchange

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
documentation:errors:adminauthchange [2015/12/06 14:28]
phplist
documentation:errors:adminauthchange [2015/12/07 08:18] (current)
phplist
Line 1: Line 1:
 +
 +====== Admin auth change ======
 +
 +The admin authentication has changed. If you used to implement your own admin authentication with the class in the "auth" folder, you now need to create a phpList plugin with the same methods.
 +
 +All you need to do is create a new plugin and paste your authentication methods to the plugin. Then set the "authProvider" variable in your plugin to be "true".
 +
 +<code>
 +class myCustomPhpListAdminAuthentication extends phplistPlugin {
 +  public $name = 'your plugin name';
 +  public $version = 0.1;
 +  public $authors = 'Your name';
 +  public $description = 'Provides authentication to phpList using .... ';
 +  public $authProvider = true;
 +
 +
 +  [...]
 +  paste the code from your admin_auth module here 
 +  
 +}
 +</code>
 +   
 +
 +Then put the plugin in your plugins folder and it will be used for authentication.
 +
 +See also [[develop/plugins#special_plugins]]
  
documentation/errors/adminauthchange.txt · Last modified: 2015/12/07 08:18 by phplist

Resources
Contact Us

e: info@phplist.com

Boring Bit

phpList is a registered limited company

UK Company No. 07582966

VAT Registration 122 0788 37

© phpList 2016