These forums have been archived and are now read-only.

The new forums are live and can be found at https://forums.eveonline.com/

EVE Technology Lab

 
  • Topic is locked indefinitely.
 

TEA (v1.3.1) - Member Management Mod for SMF 2, TeamSpeak 3 and Jabber

Author
Mr Twinkie
Republic Military School
Minmatar Republic
#401 - 2015-07-08 14:03:51 UTC
Just switched to phpbb3 and the applicable addon.. No issues there..
Equto
Imperium Technologies
Sigma Grindset
#402 - 2015-07-18 23:20:25 UTC
Im having trouble where additional groups are not assigning properly. I have two additional groups based on two different corps. They are setup as AND with both requiring ROLE:Director and IS CORP (corp id of respective corp). However directors seemed to get randomly assigned to either one of the director groups rarely in the correct corp. Is this a known issue?
Civalk
Doomheim
#403 - 2015-07-19 23:19:48 UTC
http://forum.eve-tv.de/index.php?action=admin;area=tea;sa=ts;save: Undefined variable: charlist
Filter : /var/www/vhosts/eve-tv.de/forum.eve-tv.de/Sources/TEA_TS.php
line: 368

but the site is now white when i will go for ts3 settings now.
Mike Vandenberg
School of Applied Knowledge
Caldari State
#404 - 2015-07-20 05:12:04 UTC  |  Edited by: Mike Vandenberg
Equto wrote:
Im having trouble where additional groups are not assigning properly. I have two additional groups based on two different corps. They are setup as AND with both requiring ROLE:Director and IS CORP (corp id of respective corp). However directors seemed to get randomly assigned to either one of the director groups rarely in the correct corp. Is this a known issue?


If you feel comfortable, post a screenshot of the actual rule as it shows in SMF. I haven't heard this issue with the version we are using and just ran a quick test and pulled me in fine. See screenshot of my rule linked below. I assume yours is the same except with a different corp? Also, you're talking about roles, not titles...right? there was an issue with titles that required a minor code update.

http://imgur.com/4i2UCvv
Mike Vandenberg
School of Applied Knowledge
Caldari State
#405 - 2015-07-20 05:15:44 UTC
Civalk wrote:
http://forum.eve-tv.de/index.php?action=admin;area=tea;sa=ts;save: Undefined variable: charlist
Filter : /var/www/vhosts/eve-tv.de/forum.eve-tv.de/Sources/TEA_TS.php
line: 368

but the site is now white when i will go for ts3 settings now.


Hey Civalk - if you haven't resolved your issue, can you provide more detail what you are trying to do and what error you are seeing? I assume you are in the admin section for TEMARS trying to save some settings for TS. Is it throwing an error? Also, is this a brand new install or one that was working but broke?
Civalk
Doomheim
#406 - 2015-07-20 09:14:53 UTC  |  Edited by: Civalk
Good Morning,

but this is a new installation. he is 2 weeks now old than. He is wgite the setting site. But iu make a screen now .

http://www.pic-upload.de/view-27743825/screen_001.png.html
http://www.pic-upload.de/view-27743840/002.png.html

Apache Error log say:

PHP Fatal error: Class 'TeamSpeak3_Helper_Profiler' not found inSources/TS3_Class/TeamSpeak3.php on line 516, referer: xxx/index.php?action=admin;area=featuresettings
Mike Vandenberg
School of Applied Knowledge
Caldari State
#407 - 2015-07-21 06:02:08 UTC  |  Edited by: Mike Vandenberg
Civalk wrote:
Good Morning,

but this is a new installation. he is 2 weeks now old than. He is wgite the setting site. But iu make a screen now .

http://www.pic-upload.de/view-27743825/screen_001.png.html
http://www.pic-upload.de/view-27743840/002.png.html

Apache Error log say:

PHP Fatal error: Class 'TeamSpeak3_Helper_Profiler' not found inSources/TS3_Class/TeamSpeak3.php on line 516, referer: xxx/index.php?action=admin;area=featuresettings


Hey Civalk -

Hard to understand exactly what is going on. I think more information would be helfpul. looking at screenshot 1, it sounds like as an admin, when you go to Admin > Temars > teamspeak, you get a blank screen. Is that correct? If so, has it ever worked?

Looking at the screenshot of the smf logs, seems like maybe the user is trying to register for Teamspeak through the forums and getting an error. Are you hosting your own Teamspeak or using a hosted Teamspeak?

If you still can't figure it out, maybe PM me and I can give you my skype info and see if I can help you through chat.
Civalk
Doomheim
#408 - 2015-07-21 07:48:22 UTC
Yes that is correct. this is now blank. He has nothing worked for ts, the other worked fine. But i host my Teamspeak 3 Server on my windows server. BUt i would send pm in next time.
Duncan McClain
Jolly Codgers
Get Off My Lawn
#409 - 2015-07-26 12:28:24 UTC
Fixing Temar's EVE API After FozzieSov Broke Standings Retrieval

I saw this the other day and thought it might be useful to link it here.

modify Eve API TEAC.php
Mike Vandenberg
School of Applied Knowledge
Caldari State
#410 - 2015-07-26 18:39:12 UTC  |  Edited by: Mike Vandenberg
Duncan McClain wrote:
Fixing Temar's EVE API After FozzieSov Broke Standings Retrieval

I saw this the other day and thought it might be useful to link it here.

modify Eve API TEAC.php


I don't think the fix linked is 100% correct. What you want to do is find the text below (where it has rowset[1] and change to rowset[2]. The linked change has you make modifications to both corporate standings rowset[0] and alliance standings rowset[1]. The issue with the api is with alliance standings not pulling in. If you make the change described, then people using TEA who don't have an alliance, will have no corporate level standings pulled in. The change below pulls in both corp and alliance standings. screenshot of the code here: http://imgur.com/a9R20LX

ORGINAL:
if(!empty($xml -> result -> rowset[1]))
{
foreach($xml -> result -> rowset[1] as $s)
{
$astandings[(string)$s["contactID"]] = a
}
}

NEW:
if(!empty($xml -> result -> rowset[2]))
{
foreach($xml -> result -> rowset[2] as $s)
{
$astandings[(string)$s["contactID"]] = a
}
}
xsrender
DAWGS Corp.
Boatload of Destruction
#411 - 2015-08-05 18:36:26 UTC
Mr Twinkie wrote:
Got old users working just fine

getting another error now...

http://i.imgur.com/EhPzwn8.jpg?1

whenever someone tries to register.


I absolutely despise this plugin


I had this exact same issue, somehow during the install it placed a lot of code in twice. You have to edit TEA.php and remove the duplicate code that draws the text box, its somewhere around line 3452 of TEA.php. You'll also need to edit TEA_TS.php, there are duplicated function prototypes at the bottom of that page (at least for me).

Good luck, sorry I don't have more specifics.
Ikki Phoenix
Federal Navy Academy
Gallente Federation
#412 - 2015-08-06 03:08:57 UTC
Is this tool available for myBB?
Mike Vandenberg
School of Applied Knowledge
Caldari State
#413 - 2015-08-06 04:30:38 UTC
Ikki Phoenix wrote:
Is this tool available for myBB?


I don't think so. this is a mod for smf 2
Val Starweaver
State War Academy
Caldari State
#414 - 2015-08-24 12:41:59 UTC
Hello Everyone,

Sure hope some of you smart people can help me. Kinda of a strange issue.


I have temars set up and working for the most part but I am having an issue with assigning people to an alliance group.

Currently I have it set up adding people to groups from my corp, and it works great, but when I try to do the same thing for the alliance it is not working. It will not assign any person to the group UNLESS they are an admin.

I have check the alliance ID and its correct and when I check each person's profile it shows them in the alliance, but temars will not add them to the usergroup I created, unless you are an admin.

I have also recreated the group and created a new group for temars to add to, but nothing.


Thanks Val
Mike Vandenberg
School of Applied Knowledge
Caldari State
#415 - 2015-08-24 16:19:50 UTC
Val Starweaver wrote:
Hello Everyone,

Sure hope some of you smart people can help me. Kinda of a strange issue.


I have temars set up and working for the most part but I am having an issue with assigning people to an alliance group.

Currently I have it set up adding people to groups from my corp, and it works great, but when I try to do the same thing for the alliance it is not working. It will not assign any person to the group UNLESS they are an admin.

I have check the alliance ID and its correct and when I check each person's profile it shows them in the alliance, but temars will not add them to the usergroup I created, unless you are an admin.

I have also recreated the group and created a new group for temars to add to, but nothing.


Thanks Val


It would be helpful if you posted your rules so we can see what you have. Without that I'm thinking it is a shot in the dark...so with that in mind here is what I'm thinking....

I think main rules can only have 1 rule apply and the order of rules is very important. The additional rules can have more than one rule. When we do installs for people with alliances, we do a main rule for alliance. Then if they want to drill down by corporation, they add those as additional rules. If I had to guess you have corp as a main rule, then you also add alliance as a main rule. It hits the corp rule first and so never gets the alliance rule.

If that isn't it, provide more information about your rules (best a screen capture) and I can try to provide feedback based on that.
Val Starweaver
State War Academy
Caldari State
#416 - 2015-08-24 18:45:55 UTC
Here it is. I created the corp rules as a work around till I get the issue fixed. All the corp rules work great, just not the alliance one.

Thanks Val

http://pasteboard.co/7Mm257W.jpg


p.s. I have tried to use the main group part, but that doesn't seem to work for anything.
Mike Vandenberg
School of Applied Knowledge
Caldari State
#417 - 2015-08-24 20:35:33 UTC
Which of these rules is the "alliance" one that isn't working? Is it rule #1 from the screenshot? For one of the people where it doesn't apply the rule, what group are they currently in?

I would recommend setting up the main rules to get the best bang for your buck.
Val Starweaver
State War Academy
Caldari State
#418 - 2015-08-25 14:13:42 UTC
Still working on it, so thank you for your help.


Fast question, and maybe I am just missing it, but how can I force my members to use their selected EVE character name as their forum display name?


I am probably just missing this.


Thank You Val
Val Starweaver
State War Academy
Caldari State
#419 - 2015-08-28 16:34:13 UTC
Another Question

I am trying to setup TEA to allow my members to register on TS using our forums. I have it all set up, meaning I have my query admin account working with TEA. I can see the different TS groups in the config area of my forums and I have created rules to place people into the correct groups....


But when I try to register a user it I get "ERROR] Unknown method' when I try to register.

Any Ideas?


Val Thank you
Civalk
Doomheim
#420 - 2015-08-30 12:37:46 UTC
Has other player failure, when he checked member in administration panel ?

He load and load so lowered

Quote:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
Datei: /var/www/vhosts/eve-tv.de/forum.eve-tv.de/Sources/TEA.php
line: 2757


Has CCP the xml updated ?