Just an idea I thought would be cool on the forums. Have a "Who's on TS" image. I don't know what information the person would be able to gather from view source or if we even want to post info of our Teamspeak on the forums or not. There's also the question if Phant even wants to be bothered with such a trivial thing as this. But if you want to I found this from Teamspeak.org.
If You have any skills in SQL query building, You can rewrite mysql_sql folder to allow users to use their passwords from phpBB directly.
Other way, much cross-platform and cross-db aware.
Write a script that can duplicate required info from phpBB *users table to TS ts2_clients table.
Modify at least
mysql_sql\edit_client.sql
mysql_sql\new_client.sql
mysql_sql\read_client_login.sql
files to reflect that ":sPassword" should be encoded with md5()
code is:
new_client.sql
Code:
insert into ts2_clients
(i_client_server_id,
b_client_privilege_serveradmin,
s_client_name,
s_client_password,
dt_client_created)
values
(:iServerID,
:bServerAdmin,
:sName,
md5(:sPassword),
:dtCreated);
edit_client.sql
Code:
update ts2_clients set
b_client_privilege_serveradmin = :bServerAdmin,
s_client_name = :sName,
s_client_password = md5(:sPassword)
where
i_client_id = :iClientID;
read_client_login.sql
Code:
select *
from ts2_clients
where i_client_server_id = :iServerID
and s_client_name = :sName
and s_client_password= md5(:sPassword)
http://forum.goteamspeak.com/showthread.php?t=32216