Does anyone knows from where Front End User Management reads information ?
I need following details where it keeps data stored:
Database Name (does it have separate DB?)
Table Name (whats the name of the table within the DB)
Username Field Name (for registered users)
Password Field Name (for registered users)
THANKS FOR HELP !!!
[SOLVED] Front End User Management
[SOLVED] Front End User Management
Last edited by peterbra on Sat Dec 08, 2007 1:58 pm, edited 1 time in total.
-
- Support Guru
- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
- Location: Fernie British Columbia, Canada
Re: Front End User Management
FEU uses a number of tables in the CMS Made simple database..... there's like 5 or 6 of them or something (I can't remember without looking it up, but you'll see it in FrontEndUsers/method.install.php You'll see the username field there too.
But the password is md5 encoded so you can't extract the password easily.
But the password is md5 encoded so you can't extract the password easily.
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Re: Front End User Management
Hey, thanks for help, I found it 
Table name where user and pass are stored: cms_module_feusers_users
Pass is indeed MD5 enconded.....

Table name where user and pass are stored: cms_module_feusers_users
Pass is indeed MD5 enconded.....
Re: Front End User Management
Does anyone knows how to change the password encryption 
Can I the password field to be unencrypted

Can I the password field to be unencrypted

Re: Front End User Management
Most of the time I am speaking to myself 
Anyway I solved the issue by deleting all users and via MASS-MAIL I asked them to re-join the site with same credentials and I changed the encryption method in PHP....
Time-consuming for users, but I saw no other way !

Anyway I solved the issue by deleting all users and via MASS-MAIL I asked them to re-join the site with same credentials and I changed the encryption method in PHP....
Time-consuming for users, but I saw no other way !