Results 1 to 8 of 8
-
19-01-2010, 06:57 #1
Channel Description Keeps disappearing frequenly
I'm running TS3 with mysql. My Database works fine since I'm running it for many purpose. I can notice that only the descriptions stored in UTF-8 disappeared, not all of them, just the most part but English descriptions are still alive.
I don't think it's MySQL problems since it runs fine for 3 and half years with many (web)applications in UTF-8.
Any suggestions or helps will be highly appreciated.
-
19-01-2010, 08:33 #2
-= TeamSpeak Fanatic =-
- Join Date
- Dec 2004
- Location
- RF
- Posts
- 1,693
What the client encong set for user you use to connect to database?
-
20-01-2010, 06:26 #3
Absolutely an UTF-8.
If it isn't, I couldn't store japanses or Thai into my channels description for sure.
-
20-01-2010, 16:26 #4
-= TeamSpeak Team =-
- Join Date
- Jun 2002
- Location
- Krün / Germany
- Posts
- 1,965
thats an issue with the sql table structure...
sqlite does not care if you do varchar(255) or varchar(5)
mysql does care... since its varchar(255) your descriptiongs get truncated after 255 chars.
Values in VARCHAR columns are variable-length strings. The length can be specified as a value from 0 to 255 before MySQL 5.0.3, and 0 to 65,535 in 5.0.3 and later versions
so if you got such a newer mysql version, just alter the table and increase it to an varchar(8192) (max size of channel description).
-
20-01-2010, 16:42 #5
-= TeamSpeak Addict =-
- Join Date
- Oct 2008
- Location
- Alberta, Canada
- Posts
- 167
Or change it from type varchar(x) to text().
-
20-01-2010, 16:54 #6
I have 5.1.41. Thank you for an answer. But I wonder which one is channel description table. Is it channel_properties > value?
-
21-01-2010, 06:09 #7
-= TeamSpeak Team =-
- Join Date
- Jun 2002
- Location
- Krün / Germany
- Posts
- 1,965
yes, sorry.
-
21-01-2010, 06:23 #8
Thank you. I think my server is fine now. I wish TeamSpeak 3 goes full in a very soon!
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
3 Suggestions
By BetaAlien in forum Suggestions and FeedbackReplies: 9Last Post: 05-01-2010, 14:05 -
No Sound
By tank464 in forum [TeamSpeak 2] Client SupportReplies: 20Last Post: 18-11-2009, 19:16 -
dos attack i think
By sklipnoty in forum [TeamSpeak 2] Server SupportReplies: 2Last Post: 29-08-2007, 23:19 -
Timeout nach 30 Sekunden
By NNNChef in forum [TeamSpeak 2] Client SupportReplies: 0Last Post: 09-01-2006, 21:05 -
Constant timeouts and disconnections
By SniperBait in forum [TeamSpeak 2] Client SupportReplies: 8Last Post: 10-05-2005, 22:07



Reply With Quote