<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>TeamSpeak Community Forums</title>
		<link>http://forum.teamspeak.com/</link>
		<description>The official TeamSpeak community forums.</description>
		<language>en</language>
		<lastBuildDate>Thu, 09 Sep 2010 07:34:16 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.teamspeak.com/templates/default/forum/misc/rss.jpg</url>
			<title>TeamSpeak Community Forums</title>
			<link>http://forum.teamspeak.com/</link>
		</image>
		<item>
			<title>Cannot change channels</title>
			<link>http://forum.teamspeak.com/showthread.php?t=58242&amp;goto=newpost</link>
			<pubDate>Thu, 09 Sep 2010 05:41:16 GMT</pubDate>
			<description><![CDATA[I'm having an issue where I have assigned a server group with i_channel_join_power of 25 and a channel with i_channel_needed_subscribe_power of 25 and when I assign the group to a new user they cannot change channels. My existing users can change channels without any issues, but any new users...]]></description>
			<content:encoded><![CDATA[<div>I'm having an issue where I have assigned a server group with i_channel_join_power of 25 and a channel with i_channel_needed_subscribe_power of 25 and when I assign the group to a new user they cannot change channels. My existing users can change channels without any issues, but any new users cannot. When they try to change channels they get an error of &quot;insufficient client permissions (failed on i_channel_join_power (13688/0x3578)). If I set the needed permissions to 0, then I'm able to join the channel, but at 25 it gives the error above. I have been through the permissions several times and have no idea what's going on. Any help would be appreciated.<br />
<br />
<br />
Edit 1:<br />
<br />
I did a little more testing and found that it doesn't matter what my join power is set to, if the needed join power is anything other than 0 or removed, I cannot join the channel.</div>

]]></content:encoded>
			<category domain="http://forum.teamspeak.com/forumdisplay.php?f=101">Permission System</category>
			<dc:creator>Bu||iT</dc:creator>
			<guid isPermaLink="true">http://forum.teamspeak.com/showthread.php?t=58242</guid>
		</item>
		<item>
			<title><![CDATA[Solution for unable to load database plugin library "libts3db_mysql.so"]]></title>
			<link>http://forum.teamspeak.com/showthread.php?t=58241&amp;goto=newpost</link>
			<pubDate>Thu, 09 Sep 2010 02:41:10 GMT</pubDate>
			<description><![CDATA[I don't know if this solution was posted anywhere else but I thought I would lend a hand. 
 
If you have this problem in linux, you will need to access your TS3 directory. 
Assuming you have ts3db_mysql.ini or correct startup parameters, this library (libts3db_mysql.so) is linked against an older...]]></description>
			<content:encoded><![CDATA[<div>I don't know if this solution was posted anywhere else but I thought I would lend a hand.<br />
<br />
If you have this problem in linux, you will need to access your TS3 directory.<br />
Assuming you have ts3db_mysql.ini or correct startup parameters, this library (libts3db_mysql.so) is linked against an older mysql library.  You can verify this by running the command ldd libts3db_mysql.so<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">#&nbsp; ldd libts3db_mysql.so<br />
&nbsp; &nbsp; &nbsp; &nbsp; linux-gate.so.1 =&gt;&nbsp; (0x008a1000)<br />
&nbsp; &nbsp; &nbsp; &nbsp; libmysqlclient.so.15 =&gt; not found<br />
&nbsp; &nbsp; &nbsp; &nbsp; libstdc++.so.6 =&gt; /usr/lib/libstdc++.so.6 (0x00eba000)<br />
&nbsp; &nbsp; &nbsp; &nbsp; libm.so.6 =&gt; /lib/libm.so.6 (0x007ad000)<br />
&nbsp; &nbsp; &nbsp; &nbsp; libgcc_s.so.1 =&gt; /lib/libgcc_s.so.1 (0x00b83000)<br />
&nbsp; &nbsp; &nbsp; &nbsp; libc.so.6 =&gt; /lib/libc.so.6 (0x00249000)<br />
&nbsp; &nbsp; &nbsp; &nbsp; /lib/ld-linux.so.2 (0x00229000)</code><hr />
</div>As you can see, &quot;libmysqlclient.so.15 =&gt; not found&quot;;<br />
libmysqlclient.so is located in most *nix systems in /usr/lib/mysql<br />
You might have something like:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">lrwxrwxrwx 1 root root&nbsp; &nbsp; &nbsp; 26 2010-09-07 04:11 libmysqlclient_r.so.16 -&gt; libmysqlclient_r.so.16.0.0<br />
-rwxr-xr-x 1 root root 1533448 2010-07-14 19:36 libmysqlclient_r.so.16.0.0</code><hr />
</div>but if you don't have <br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">lrwxrwxrwx 1 root root&nbsp; &nbsp; &nbsp; 24 2010-09-08 21:06 libmysqlclient.so.15 -&gt; libmysqlclient.so.15.0.0<br />
-rwxr-xr-x 1 root root 1457088 2010-09-08 21:05 libmysqlclient.so.15.0.0</code><hr />
</div>then you will have to find it for your system.  You can have both without conflicts, as each program looks for the version of the library it needs.  The problem is that with some linux distros the package manager (like YUM) will remove the old library, becase TeamSpeak3 itself is not installed as an RPM, therefore the library dependency is not kept.  I recommend the TS3 server come with the approriate libmysqlclient with an install script, if it is going to be linked to it.  Otherwise, do the following:<br />
<br />
Find an earlier version of mysql-libs. I use fedora, so it was mysql-libs-5.0.67-2.fc10.i386.rpm in the fedora 10 distro at <a href="http://mirror.pnl.gov/fedora/linux/releases/10/Everything/i386/os/Packages/mysql-libs-5.0.67-2.fc10.i386.rpm" target="_blank">http://mirror.pnl.gov/fedora/linux/r....fc10.i386.rpm</a> - of course it might be in an archive somewhere else by the time you read this.  Use wget or download it to a work directory of your choice.<br />
You will need to extract the  libmysqlclient.so.15.0.0 out of it.  To do this, you need to also have rpm2cpio and cpio both installed on your system.<br />
Then, you will need to move libmysqlclient.so.15.0.0 and make a symbolic link, then reload the library cache.<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">mkdir mysql-temp<br />
cd mysql-temp<br />
wget http://mirror.pnl.gov/fedora/linux/releases/10/Everything/i386/os/Packages/mysql-libs-5.0.67-2.fc10.i386.rpm<br />
rpm2cpio&nbsp; mysql-libs-5.0.67-2.fc10.i386.rpm&nbsp; mysql | cpio -idmv<br />
cp ./usr/lib/mysql/libmysqlclient.so.15.0.0 /usr/lib/mysql<br />
cd ../<br />
rm -rf mysql-temp<br />
cd /usr/lib/mysql<br />
ln -s libmysqlclient.so.15.0.0 libmysqlclient.so.15<br />
ldconfig /usr/lib/mysql</code><hr />
</div>That should do it for you.  The alternative might be to downgrade your version of mysql-server, however most admins know the dependency hell that creates sometimes.  If you don't understand the example I provided or your service provider doesn't allow shell access, you're out of luck until the TeamSpeak providers link libts3db_mysql.so with (your) version of libmysqlclient</div>

]]></content:encoded>
			<category domain="http://forum.teamspeak.com/forumdisplay.php?f=100">Server Support</category>
			<dc:creator>SShaadd</dc:creator>
			<guid isPermaLink="true">http://forum.teamspeak.com/showthread.php?t=58241</guid>
		</item>
		<item>
			<title>Channel Help Please</title>
			<link>http://forum.teamspeak.com/showthread.php?t=58240&amp;goto=newpost</link>
			<pubDate>Thu, 09 Sep 2010 02:08:08 GMT</pubDate>
			<description>I know that in teamspeak 2 there was a way to make it to where you can only see the people in your channel. Can you do that in teamspeak 3 to one channel or do you have to do it to them all?</description>
			<content:encoded><![CDATA[<div>I know that in teamspeak 2 there was a way to make it to where you can only see the people in your channel. Can you do that in teamspeak 3 to one channel or do you have to do it to them all?</div>

]]></content:encoded>
			<category domain="http://forum.teamspeak.com/forumdisplay.php?f=98">General Questions</category>
			<dc:creator>FrOsTByTe</dc:creator>
			<guid isPermaLink="true">http://forum.teamspeak.com/showthread.php?t=58240</guid>
		</item>
		<item>
			<title><![CDATA[can't open run]]></title>
			<link>http://forum.teamspeak.com/showthread.php?t=58239&amp;goto=newpost</link>
			<pubDate>Thu, 09 Sep 2010 01:23:55 GMT</pubDate>
			<description>when i click on run it says failed to open archive? linux mint 7 if that helps</description>
			<content:encoded><![CDATA[<div>when i click on run it says failed to open archive? linux mint 7 if that helps</div>

]]></content:encoded>
			<category domain="http://forum.teamspeak.com/forumdisplay.php?f=105">Linux</category>
			<dc:creator>dastabah</dc:creator>
			<guid isPermaLink="true">http://forum.teamspeak.com/showthread.php?t=58239</guid>
		</item>
		<item>
			<title>Another Modify Power Thread</title>
			<link>http://forum.teamspeak.com/showthread.php?t=58238&amp;goto=newpost</link>
			<pubDate>Wed, 08 Sep 2010 23:23:30 GMT</pubDate>
			<description><![CDATA[Okay, over the past few days I've looked at dozens of threads that are quite similar to my issue, but none of the solutions for them have helped me with my predicament.  
 
Essentially I wish to grant myself (Server Owner & Host) b_permission_modify_power_ignore but get the following error,...]]></description>
			<content:encoded><![CDATA[<div>Okay, over the past few days I've looked at dozens of threads that are quite similar to my issue, but none of the solutions for them have helped me with my predicament. <br />
<br />
Essentially I wish to grant myself (Server Owner &amp; Host) <i>b_permission_modify_power_ignore</i> but get the following error, <font color="red">insufficient permission modify power</font>.<br />
<br />
I'm using the following script:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">login serveradmin password<br />
use sid=1<br />
servergroupaddperm sgid=6 permsid=b_permission_modify_power_ignore permvalue=1 permnegated=0 permskip=0</code><hr />
</div>The reason I wish to enable this is for ease of access. I'm unable to enable several things on my server, including icon management and it's a real pain. I don't have sufficient privileges to modify several permissions including:<br />
<i><br />
<b><u>Anything classified in 'Global' on the Permission List</u></b><br />
b_virtualserver_modify_reserved_slots<br />
b_virtualserver_modify_min_client_version<br />
b_virtualserver_modify_weblist<br />
b_permission_modify_power_ignore<br />
b_virtualserver_modify_icon_id<br />
i_max_icon_filesize<br />
b_icon_manage<br />
</i><br />
<br />
I'm not sure if it's limited to those, but those are the ones that I care about at the moment.<br />
<br />
I have my serveradmin password and can change things via Server Query normally, but I always get insufficient client permissions when trying to change any of the parameters for the aforementioned. <br />
<br />
Thanks for any help in advance.</div>

]]></content:encoded>
			<category domain="http://forum.teamspeak.com/forumdisplay.php?f=101">Permission System</category>
			<dc:creator>HeeroYamato</dc:creator>
			<guid isPermaLink="true">http://forum.teamspeak.com/showthread.php?t=58238</guid>
		</item>
		<item>
			<title>TS2 sound problems on Mac OS X 10.5.8</title>
			<link>http://forum.teamspeak.com/showthread.php?t=58237&amp;goto=newpost</link>
			<pubDate>Wed, 08 Sep 2010 22:55:22 GMT</pubDate>
			<description><![CDATA[The problem with my Teamspeak 2 is, I'm playing a game online with my friends and every time I try to communicate with them, I hear this sound in the background everytime I try to say something. It can be louder than my voice on Teamspeak 2. Can anyone help?]]></description>
			<content:encoded><![CDATA[<div>The problem with my Teamspeak 2 is, I'm playing a game online with my friends and every time I try to communicate with them, I hear this sound in the background everytime I try to say something. It can be louder than my voice on Teamspeak 2. Can anyone help?</div>

]]></content:encoded>
			<category domain="http://forum.teamspeak.com/forumdisplay.php?f=73"><![CDATA[[TeamSpeak 2] Client Support]]></category>
			<dc:creator>DeadyAlive</dc:creator>
			<guid isPermaLink="true">http://forum.teamspeak.com/showthread.php?t=58237</guid>
		</item>
		<item>
			<title>Multiple teamspeak Server Processes with diffrent NPL</title>
			<link>http://forum.teamspeak.com/showthread.php?t=58236&amp;goto=newpost</link>
			<pubDate>Wed, 08 Sep 2010 21:57:44 GMT</pubDate>
			<description>Good evening 
 
I have a question, and although it is allowed to use several non-profit licenses on a server? 
I have in my WoW guild created for me and my brother and our CS clan ever a server with 120 ports. 
My question now is should I allow someone with me another TS server install? 
So...</description>
			<content:encoded><![CDATA[<div>Good evening<br />
<br />
I have a question, and although it is allowed to use several non-profit licenses on a server?<br />
I have in my WoW guild created for me and my brother and our CS clan ever a server with 120 ports.<br />
My question now is should I allow someone with me another TS server install?<br />
So according to the scheme to that which I give a shell access to my server and allow him his own team speak server to create its own license.<br />
<br />
I put in this sense, the only place for a Teamspek server for free. And it will give maximum assistance with problems.<br />
My Root have 10 Ip's and i will use for 1 Server Process 1 IP<br />
<br />
I thank you in advance for your response<br />
<br />
Sorry i have Post this in the fals subforum<br />
<br />
<br />
Und das ganze in Deutsch :P<br />
<br />
Guten Abend<br />
<br />
Ich habe eine Frage und zwar ist es erlaubt mehrere Non Profit Lizenzen auf einem Server zu verwenden?<br />
Ich habe bei mir für die WoW Gilde von mir und die von meinem Bruder und für unsere CS Clans je 1 Server mit 120 Ports erstellt.<br />
Meine Frage ist jetzt darf ich es jemandem erlauben bei mir einen weiteren TS Server zu installieren?<br />
Also nach dem Schema das ich demjenigen einen Shell Zugang auf meinen Server gebe und ihm gestatte einen eigenen Teamspeak Server mit eigener Lizenz zu erstellen.<br />
<br />
Ich stelle in diesem Sinn nur den Platz für einen Teamspek-Server gratis zur Verfügung. Und werde ihm höchstens bei Problemen Hilfestellung geben.<br />
Mein Root ht 10 IP's und ich würde pro Serverprozess eine davon nutzen<br />
<br />
Ich bedanke mich im Voraus für eure Antwort</div>

]]></content:encoded>
			<category domain="http://forum.teamspeak.com/forumdisplay.php?f=98">General Questions</category>
			<dc:creator>mythology1986</dc:creator>
			<guid isPermaLink="true">http://forum.teamspeak.com/showthread.php?t=58236</guid>
		</item>
		<item>
			<title>Failed to connect to server (server offline)</title>
			<link>http://forum.teamspeak.com/showthread.php?t=58234&amp;goto=newpost</link>
			<pubDate>Wed, 08 Sep 2010 19:37:43 GMT</pubDate>
			<description><![CDATA[hi yesterday my server to work on and I can not connect. 
I get message "Failed to connect to server" server list and the server is offline. 
When I try to run a virtual server that is not "error msg id = 0 = OK (17 ms) 
error id = 1024 msg = invalid \ sserverID (344 ms) 
Total: 361 ms " 
Server ID...]]></description>
			<content:encoded><![CDATA[<div>hi yesterday my server to work on and I can not connect.<br />
I get message &quot;Failed to connect to server&quot; server list and the server is offline.<br />
When I try to run a virtual server that is not &quot;error msg id = 0 = OK (17 ms)<br />
error id = 1024 msg = invalid \ sserverID (344 ms)<br />
Total: 361 ms &quot;<br />
Server ID is a good server but for some reason it reports as bad although querty ServerList see them.<br />
Other virtual servers are functioning normally<br />
I use Windows Server 2003 czech and 32bit Beta version of the ts3 27</div>

]]></content:encoded>
			<category domain="http://forum.teamspeak.com/forumdisplay.php?f=100">Server Support</category>
			<dc:creator>dragokazov</dc:creator>
			<guid isPermaLink="true">http://forum.teamspeak.com/showthread.php?t=58234</guid>
		</item>
		<item>
			<title>why is my threat (ts3 client crashed) deleted?</title>
			<link>http://forum.teamspeak.com/showthread.php?t=58233&amp;goto=newpost</link>
			<pubDate>Wed, 08 Sep 2010 18:44:11 GMT</pubDate>
			<description>???..without answer???</description>
			<content:encoded><![CDATA[<div>???..without answer???</div>

]]></content:encoded>
			<category domain="http://forum.teamspeak.com/forumdisplay.php?f=86">Trash</category>
			<dc:creator>Elminster</dc:creator>
			<guid isPermaLink="true">http://forum.teamspeak.com/showthread.php?t=58233</guid>
		</item>
		<item>
			<title><![CDATA[I can't connect to TeamSpeak]]></title>
			<link>http://forum.teamspeak.com/showthread.php?t=58232&amp;goto=newpost</link>
			<pubDate>Wed, 08 Sep 2010 18:37:13 GMT</pubDate>
			<description><![CDATA[Hi ! 
 
I installed ts3 server, but i can connect and after disconnected is, but i can connect after disconnect and i can't 
 
I have open the port 9987 udp 
 
Bye & Thanks]]></description>
			<content:encoded><![CDATA[<div>Hi !<br />
<br />
I installed ts3 server, but i can connect and after disconnected is, but i can connect after disconnect and i can't<br />
<br />
I have open the port 9987 udp<br />
<br />
Bye &amp; Thanks</div>

]]></content:encoded>
			<category domain="http://forum.teamspeak.com/forumdisplay.php?f=106">Windows</category>
			<dc:creator>dsb_spain</dc:creator>
			<guid isPermaLink="true">http://forum.teamspeak.com/showthread.php?t=58232</guid>
		</item>
		<item>
			<title><![CDATA[[Help] Music in a channel]]></title>
			<link>http://forum.teamspeak.com/showthread.php?t=58231&amp;goto=newpost</link>
			<pubDate>Wed, 08 Sep 2010 18:22:03 GMT</pubDate>
			<description>Its possible to have something like a online radio in a channel? 
 
Or a playlist ... 
 
pls help me :D</description>
			<content:encoded><![CDATA[<div>Its possible to have something like a online radio in a channel?<br />
<br />
Or a playlist ...<br />
<br />
pls help me :D</div>

]]></content:encoded>
			<category domain="http://forum.teamspeak.com/forumdisplay.php?f=98">General Questions</category>
			<dc:creator>Superfan</dc:creator>
			<guid isPermaLink="true">http://forum.teamspeak.com/showthread.php?t=58231</guid>
		</item>
		<item>
			<title>Setup Wizard - German translation</title>
			<link>http://forum.teamspeak.com/showthread.php?t=58229&amp;goto=newpost</link>
			<pubDate>Wed, 08 Sep 2010 17:34:34 GMT</pubDate>
			<description><![CDATA[*In step 2:* 
Replace the headline 
"Mikrofon Einstellungen" with 
"Mikrofoneinstellungen". 
 
If you select "Sprachaktivierung" replace 
"ein Tastenkürzel zum stumm schalten" with 
"ein Tastenkürzel zum Stummschalten". 
 
If you select "Push-To-Talk" replace]]></description>
			<content:encoded><![CDATA[<div><b>In step 2:</b><br />
Replace the headline<br />
&quot;Mikrofon Einstellungen&quot; with<br />
&quot;Mikrofoneinstellungen&quot;.<br />
<br />
If you select &quot;Sprachaktivierung&quot; replace<br />
&quot;ein Tastenkürzel zum stumm schalten&quot; with<br />
&quot;ein Tastenkürzel zum Stummschalten&quot;.<br />
<br />
If you select &quot;Push-To-Talk&quot; replace<br />
&quot;sofern Sie mehr als die zwei Standardtasten haben&quot; with<br />
&quot;sofern sie mehr als die zwei Standardtasten hat&quot;.<br />
<br />
<br />
<b>In step 3 &quot;Sprachaktivierung testen&quot;:</b><br />
Replace<br />
&quot;Empfindlichkeit der Sprachaktivierungs&quot; with<br />
&quot;Empfindlichkeit der Sprachaktivierung&quot;.<br />
<br />
Replace<br />
&quot;Aktivieren Sie &quot;Sprache Testen&quot;&quot; with<br />
&quot;Aktivieren Sie &quot;Sprache testen&quot;&quot;.<br />
<br />
Replace<br />
&quot;rot/grüner Balken&quot; with<br />
&quot;rot-grüner Balken&quot; or &quot;roter/grüner Balken&quot;.<br />
<br />
Replace<br />
&quot;wie start das Aufnahmesignal&quot; with<br />
&quot;wie stark das Aufnahmesignal&quot;.<br />
<br />
Replace<br />
&quot;neben &quot;Sprachen Testen&quot;&quot; with<br />
&quot;neben &quot;Sprache testen&quot;&quot;.<br />
<br />
Replace<br />
&quot;dass TeamSpeak ihre Sprachdaten übertragen wird, sobald die Lautstäre&quot; with<br />
&quot;dass TeamSpeak Ihre Sprachdaten übertragen wird, sobald die Lautstärke&quot;.<br />
<br />
Replace<br />
&quot;dass die Lamp aufleuchtet&quot; with<br />
&quot;dass die Lampe aufleuchtet&quot;.<br />
<br />
Replace<br />
&quot;Mikrofon an der Standard Soundkarte&quot; with<br />
&quot;Mikrofon an der Standard-Soundkarte&quot;.<br />
<br />
Replace<br />
&quot;durch einem Schalter am Mikrofon&quot; with<br />
&quot;durch einen Schalter am Mikrofon&quot;.<br />
<br />
<br />
<b>In step 3 &quot;Push-To-Talk testen&quot;:</b><br />
If you press the &quot;Sprache testen&quot; button you'll see<br />
&quot;Press &lt;HOTKEY&gt; to talk.&quot; and not<br />
&quot;Drücke &lt;HOTKEY&gt; um zu sprechen.&quot;.<br />
You'll find the same untranslated sentence under &quot;Einstellungen &gt; Optionen &gt; Aufnahme&quot;.<br />
<br />
Replace<br />
&quot;Der rot/grüne Balken&quot; with<br />
&quot;Der rot-grüne Balken&quot; or &quot;Der rote/grüne Balken&quot;.<br />
<br />
Replace<br />
&quot;Mikrofon an der Standard Soundkarte&quot; with<br />
&quot;Mikrofon an der Standard-Soundkarte&quot;.<br />
<br />
Replace<br />
&quot;durch einem Schalter am Mikrofon&quot; with<br />
&quot;durch einen Schalter am Mikrofon&quot;.<br />
<br />
<br />
<b>In step 4 &quot;Nützliche Tastenkombinationen&quot; if you select &quot;Sprachaktivierung&quot;:</b><br />
Replace<br />
&quot;zum stumm schalten Ihres Mikrofons&quot; with<br />
&quot;zum Stummschalten Ihres Mikrofons&quot;.<br />
<br />
Replace<br />
&quot;Sound abschalten möchsten&quot; with<br />
&quot;Sound abschalten möchten&quot;.<br />
<br />
<br />
<b>In step 4 &quot;Nützliche Tastenkombinationen&quot; if you select &quot;Push-To-Talk&quot;:</b><br />
Replace<br />
&quot;Sound abschalten möchsten&quot; with<br />
&quot;Sound abschalten möchten&quot;.</div>

]]></content:encoded>
			<category domain="http://forum.teamspeak.com/forumdisplay.php?f=120">Bug Reports</category>
			<dc:creator>DragonFly</dc:creator>
			<guid isPermaLink="true">http://forum.teamspeak.com/showthread.php?t=58229</guid>
		</item>
		<item>
			<title>error id=2054 msg=invalid\sfile\spath</title>
			<link>http://forum.teamspeak.com/showthread.php?t=58228&amp;goto=newpost</link>
			<pubDate>Wed, 08 Sep 2010 17:32:48 GMT</pubDate>
			<description><![CDATA[Hello Forum 
 
I have a Problem to create a new virtuall Server, i become the error message "error id=2054 msg=invalid\sfile\spath" 
 
System 
Debian - Lenny 
 
Directory 
/var/www/TS3]]></description>
			<content:encoded><![CDATA[<div>Hello Forum<br />
<br />
I have a Problem to create a new virtuall Server, i become the error message &quot;error id=2054 msg=invalid\sfile\spath&quot;<br />
<br />
System<br />
Debian - Lenny<br />
<br />
Directory<br />
/var/www/TS3<br />
<br />
The Server runs with MySQL , Start with tsserver.ini<br />
<br />
I hope anyone can help me</div>

]]></content:encoded>
			<category domain="http://forum.teamspeak.com/forumdisplay.php?f=100">Server Support</category>
			<dc:creator>Systemkiller</dc:creator>
			<guid isPermaLink="true">http://forum.teamspeak.com/showthread.php?t=58228</guid>
		</item>
		<item>
			<title>Can I play speakers (stereo mix) AND microphone at the same time?</title>
			<link>http://forum.teamspeak.com/showthread.php?t=58227&amp;goto=newpost</link>
			<pubDate>Wed, 08 Sep 2010 17:15:23 GMT</pubDate>
			<description>Basically I know how to do each on their own but I was wondering if it is possible to play both so people will hear my microphone and speakers at the same time. 
 
Help is much appreciated!</description>
			<content:encoded><![CDATA[<div>Basically I know how to do each on their own but I was wondering if it is possible to play both so people will hear my microphone and speakers at the same time.<br />
<br />
Help is much appreciated!</div>

]]></content:encoded>
			<category domain="http://forum.teamspeak.com/forumdisplay.php?f=98">General Questions</category>
			<dc:creator>Lanky0</dc:creator>
			<guid isPermaLink="true">http://forum.teamspeak.com/showthread.php?t=58227</guid>
		</item>
		<item>
			<title>2 clients behind the same NAT?</title>
			<link>http://forum.teamspeak.com/showthread.php?t=58226&amp;goto=newpost</link>
			<pubDate>Wed, 08 Sep 2010 17:12:03 GMT</pubDate>
			<description><![CDATA[Hey guys, 
 
I've got two people in my gaming guild that live together. When one joins my TS3, the other who joins afterwards can't speak. Could this be a NAT (router) problem and if so: how do I guide them through it? 
 
Thanks]]></description>
			<content:encoded><![CDATA[<div>Hey guys,<br />
<br />
I've got two people in my gaming guild that live together. When one joins my TS3, the other who joins afterwards can't speak. Could this be a NAT (router) problem and if so: how do I guide them through it?<br />
<br />
Thanks</div>

]]></content:encoded>
			<category domain="http://forum.teamspeak.com/forumdisplay.php?f=99">Client Support</category>
			<dc:creator>Magentix</dc:creator>
			<guid isPermaLink="true">http://forum.teamspeak.com/showthread.php?t=58226</guid>
		</item>
	</channel>
</rss>
