meta data for this page
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”.
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 }
Then put the plugin in your plugins folder and it will be used for authentication.
See also special_plugins