I have Joomla installed as a new folder under an existing domain that already has a PHP/MySQL authentication system. I have also tied all the users in the old system to the Joomla users.
What would be the simplest way to execute Joomla login once a user successfully enters their user name and password for the old system?
I am looking for something along the lines of:
User puts in name / pass on mysite.com and hits login mysite.com pulls their info from the DB and successfully authenticates Now, I want to call some function logUserIntoJommlaToo(username, password); because I already have their correct name and pass for Joomla as well.
Bonus points, keep their Joomla session alive while they browse the old site, and of course a lot out counterpart.