I’m developing this website with Joomla! 1.5.22
I want to look for the file which contains the codes for registration as I want to see which table of the MySQL database is storing the users’ information.
The reason I want to know this is because I have this mass-registration function which allows the reading of csv file and updating the database from the contents of the csv file.
So, I wish to know which table of the database is for the users’ registration then I can proceed.
Can someone tell me how to locate the php file in my Joomla site folder that contains the codes for registration?
Thanks in advance!
The table in Joomla database storing user information is
jos_users(where jos may be replaced by the database prefix you had set during Joomla installation). There is no file in Joomla site folder for this, the user registration information is fully stored injos_usersdatabase table. Let us know if this helps you.