Results 16 to 30 of 42
-
22-12-2009, 19:37 #16
-= TeamSpeak Lover =-
- Join Date
- Jun 2006
- Location
- Texas
- Posts
- 85
Shouldn't the updates be adding the necessary database entry's upon first start?
-
22-12-2009, 19:50 #17
-= TeamSpeak Addict =-
- Join Date
- Dec 2009
- Location
- Portugal
- Posts
- 506
I agree with this, but...
Mess (means possible damage to the DB and having to rebuild) or having a hard time editing it to add the new values and risk damaging the DB anyways...i'd stick to the mess
Anyways, AWESOME job guys
-
22-12-2009, 20:52 #18
-= TeamSpeak Lover =-
- Join Date
- Dec 2009
- Location
- germany
- Posts
- 74
Sorry for a new thread but I saw the SQL code in here to late.
See this thread: http://forum.teamspeak.com/showthread.php?p=205606
I have done the SQL thing, and I see the rights. But even as Level 100 admin I am unable to activate them.
The error states: insufficient permission modify power
Does anyone know how to solve this? Maybe via a serverquery?
-
22-12-2009, 22:48 #19
-= TeamSpeak User =-
- Join Date
- Dec 2009
- Location
- Germany
- Posts
- 20
Rightclick on the setting and select "Add Grant Permission".
Afterwards you are able to edit the value.
-
22-12-2009, 23:07 #20
-= TeamSpeak Lover =-
- Join Date
- Jun 2008
- Location
- .
- Posts
- 35
-
22-12-2009, 23:26 #21
has this change from beta3 to beta5 fixed the random crashing of tcpsockets and other crashes for using tcpquery alot/fast?
-
23-12-2009, 09:06 #22
-= TeamSpeak User =-
- Join Date
- Dec 2009
- Location
- Germany
- Posts
- 7
Hi R. Ludwig,
i would like to suggest something like an update.sql in the server release where the new/updated sqlstrings are in.
Not everyone has a diff programm to get the exact new string out of the 920 lines in the defaults.sql file.
-
23-12-2009, 09:12 #23
-= TeamSpeak User =-
- Join Date
- Dec 2009
- Location
- Switzerland
- Posts
- 21
-
23-12-2009, 09:25 #24
-= TeamSpeak Team =-
- Join Date
- Jun 2002
- Location
- Krün / Germany
- Posts
- 1,965
-
23-12-2009, 09:35 #25
-= TeamSpeak User =-
- Join Date
- Dec 2009
- Location
- Netherlands
- Posts
- 29
If so PLEASE tell me how to do it

If u can please post a example code then.
-
23-12-2009, 09:36 #26
-= TeamSpeak User =-
- Join Date
- Dec 2009
- Location
- Germany
- Posts
- 5
The minimum you should give the people is a simple textfile witch discribes the update-procedure.
I was searching about half an hour, what i got to do for making the update from beta1 -> 2 and then for upgrading from beta 3 -> 5.
Not everyone is born with the knowledge to do that.
Please, only a few words that explain how it works.
And at least: YOU ALL DID A GREAT JOB. GO AHEAD!
-
23-12-2009, 10:49 #27
-= TeamSpeak Lover =-
- Join Date
- Dec 2009
- Location
- germany
- Posts
- 74
-
23-12-2009, 12:26 #28
-= TeamSpeak User =-
- Join Date
- Dec 2009
- Location
- Germany
- Posts
- 7
So how should we set those then manual?
Without using SQL to add those tabs to the sqlitedb or mysqldb?Code:+ added permission PERMISSION_b_virtualserver_modify_priority_speaker_dimm_modificator you need to manually add this permission if you are upgrading the server + added PERMISSION_b_virtualserver_modify_log_settings you need to manually add this permission if you are upgrading the server
-
23-12-2009, 13:08 #29
-= TeamSpeak Team =-
- Join Date
- Jun 2002
- Location
- Krün / Germany
- Posts
- 1,965
-
23-12-2009, 13:30 #30
-= TeamSpeak User =-
- Join Date
- Dec 2009
- Location
- Germany
- Posts
- 7
Ludwig, if i would compare the default.sql from beta1 and the default.sql of beta5.
there are many misinterpreted values for the groups.
Example for Serveradmin in Beta1:
Example for Serveradmin in Beta3:Code:insert into perm_server_group (server_id, id1, id2, perm_id, perm_value, perm_negated, perm_skip) values (0, 3, 0, "i_needed_modify_power_virtualserver_modify_ft_quotas", 100, 0, 0); insert into perm_server_group (server_id, id1, id2, perm_id, perm_value, perm_negated, perm_skip) values (0, 3, 0, "i_needed_modify_power_virtualserver_modify_ft_settings", 100, 0, 0); insert into perm_server_group (server_id, id1, id2, perm_id, perm_value, perm_negated, perm_skip) values (0, 3, 0, "i_needed_modify_power_virtualserver_modify_hostbanner", 100, 0, 0); insert into perm_server_group (server_id, id1, id2, perm_id, perm_value, perm_negated, perm_skip) values (0, 3, 0, "i_needed_modify_power_virtualserver_modify_hostbutton", 100, 0, 0);
So there would be different solutions to fix it:Code:insert into perm_server_group (server_id, id1, id2, perm_id, perm_value, perm_negated, perm_skip) values (0, 3, 0, "i_needed_modify_power_virtualserver_modify_ft_quotas", 75, 0, 0); insert into perm_server_group (server_id, id1, id2, perm_id, perm_value, perm_negated, perm_skip) values (0, 3, 0, "i_needed_modify_power_virtualserver_modify_ft_settings", 75, 0, 0); insert into perm_server_group (server_id, id1, id2, perm_id, perm_value, perm_negated, perm_skip) values (0, 3, 0, "i_needed_modify_power_virtualserver_modify_hostbanner", 75, 0, 0); insert into perm_server_group (server_id, id1, id2, perm_id, perm_value, perm_negated, perm_skip) values (0, 3, 0, "i_needed_modify_power_virtualserver_modify_hostbutton", 75, 0, 0); insert into perm_server_group (server_id, id1, id2, perm_id, perm_value, perm_negated, perm_skip) values (0, 3, 0, "i_needed_modify_power_virtualserver_modify_hostmessage", 75, 0, 0);
1. creating own update values for the sqlitedb
2. editing them myself onebyone over sqlite or over serverqry
3. deleting the whole db and creating the server from scratch.
If i would go for 3 it would be a pain in the ass to recreate the custom groups and creating all the channels again with pws, topic and description.
(Okay the channels would be our fault because we recreated our ts2 server, to create for the users a better moving lately)
So what would you suggest then? When there aren't update.sql for existings servers?
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
TS-Server auf MySql umstellen (Hilfe)
By Rocketwulf in forum [TeamSpeak 2] Server SupportReplies: 5Last Post: 24-01-2007, 08:18 -
TeamSpeak Server help.
By Niock in forum [TeamSpeak 2] Server SupportReplies: 27Last Post: 22-11-2006, 22:12 -
The novel lol
By Plebby in forum [TeamSpeak 2] Client SupportReplies: 0Last Post: 02-01-2006, 12:24 -
Friends can't connect
By shadow127 in forum [TeamSpeak 2] Server SupportReplies: 86Last Post: 01-01-2006, 20:45







