Hi Iderdik,
The sip utilizes cookie to perform auto login, which means the info cannot be read across domains. However, with some clever programming it can be done. Let me give you an example.
1) you create a table in the db to hold 2 values, member ID and a hash value (maybe an MD5 of memberID + date)
2) once member is logged in using the SIP on the main site, store the member ID and the hash value in the table
3) redirect the member to a page located on the mytechsupportsite.com which also utilizes the SIP, with the hash value as the querystring
4) on this specific page, read the hash value and pull the member ID from the table created in 1), and then delete the record
5) base on the member ID, pull the login and password from the forum database and use the SIP to perform login (because the SIP takes login and password), which then creates a cookie that is readable on the second site.
6) at the end of the operation, you can either redirect the user back to the main site or do whatever you see fit.
<message edited by Samuel on 10/02/2006 05:47:46 PM>