Hello,
I have this new clients that needs to login to 7 different admin areas :
- His wordpress area,
- PHPBB3 forums
- Some tool to help with his SEO,
- his webmail interface on the hosting i provide,
…) and 3 other logins related to managing servers from different providers, not hosted locally.
I want to relieve some of this complexity and provide him a single login prompt to all of these, through an interface i make. But I am not yet sure on the best way to do this properly.
In short what i want to do is create and admin area. The client would login once to this panel (of my making) and he can access his 7 other panels in the form of links/buttons. He would be able to access everything with a simple click without the need to login to them individually.
Ideas I had that didn’t work out :
- Store all his logins/passes into a database, have my server login remotely to all the different admin areas, then copy the cookies and replicate the session from the panel i create. Idea won’t work since I can’t possibly set cookies on my client’s machine on behalf of remote websites.
- Make a script that would login to the remote admin areas, read the html pages, then displays them on my panel. After tweaking the html to change urls etc to make the pages work properly. It would work as a kind of proxy… But this doesn’t work either as I don’t know how to make a server/script behave like a browser and create cookies/sessions to be able to do the login part.
I can do a lot with PHP, but the “remote access/login” problem is what I need to figure out.
Any ideas or suggestions are welcome.