How to integrate AdAdmin with another existing application #49
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You have your own application, with your users. First of all you have to create a record in table
You don't need to use AdAdmin custom encryption password, since with your custom login you don't need to use this password field to login the user! For each user create a record and store the "id" in your own user table. Now let's see how to perform login. Since v.3.995 (#48) there is a new file inside your AdAdmin folders, this one: This PHP class isn't included, so it's not used and contains a template code to add your own login system.
This is how the process works:
This is an example of custom login class isLogged method:
|
Beta Was this translation helpful? Give feedback.
You have your own application, with your users.
You want to allow your users to login into AdAdmin installation, without forcing them to sign up and login to AdAdmin.
First of all you have to create a record in table
frw_utenti
for each user of your system that you want to login into AdAdmin.This are table information:
1
| deactivated =0
5
= advertiser |10
= webmaster |20
= administratorYou don't need to use AdAdmin custom encryp…