Pages: 1 2 3 4 5 6 7 8 [9] 10 11 12 13 14 15 16 .. 16 :: one page |
|
Author |
Thread Statistics | Show CCP posts - 0 post(s) |

Shin Chogan
Blueprint Haus Get Off My Lawn
57
|
Posted - 2014.03.22 14:36:00 -
[241] - Quote
Not really ... certainly not for that bit.
somewhere about line 118 in TEA_Jabber_OF.php there is the block :
$url = $this -> modSettings['tea_jabber_admin_url'].'/plugins/userService/userservice?type=add&secret='.$secret.'&username='.$uname.'&password='.$pw.'&name='.$name.'&email='.$email.'&groups='.$groups; $url = str_replace(" ", "%20", $url); $site = $this -> get_site($url);
adding in a
var_dump($url); var_dump($site);
after that and before the "return;" (yes I know there is 2 of them and a block of code that never gets used ... Not me :) )
it might help you find out what is happening. |

Jen Moriarty
Love for You Stealth Wear Inc.
41
|
Posted - 2014.03.22 14:46:00 -
[242] - Quote
Unfortunately no amount of printing there will show, as this page is not processed to be viewed. Is there a log where these would be written to? |

Xornicon Altair
Black Watch Syndicate Vitoc Health Services
32
|
Posted - 2014.03.22 15:07:00 -
[243] - Quote
I've just removed r2 from my server and I'm trying to install r5. Everything is okay until it gets to the actual install page and most of the files have an error next to them in big bold red letters that says "Modification parse error". I've tried proceeding anyways and it fails to install, but there are no other errors on the board.
I've downloaded the most recent package available from the first post in this thread.
SMF Version 2.0.6 This is the song.... |

Zenith Gravit
LionGate Enterprises Care Factor
38
|
Posted - 2014.03.22 15:57:00 -
[244] - Quote
Shin Chogan wrote:Zenith Gravit wrote:I got my dirty install mostly cleaned up, but the user's profile page still has some extra fields and I'm just not sure what needs to be removed to clean it up. The Status, Main Matched Rules, Characters, ID from API page, and Verification Code from API Page fields are all duplicated once. I'm just trying to figure out how to clean that up. Screen shot ----> http://i.imgur.com/0nHoabh.png Its supposed to be like that. There is always an unfilled section so you can add a 2nd or 3rd or xth api key.
Thank you for the clarification. I guess I didn't remember that being there.
Also, I thought everything was working but I'm getting a PHP Parse error on the last line of ScheduledTasks.php, it's causing my mail queue to hang. I ran into this a week or so ago, it it was because there were duplicates of the TEA cron functions. I just deleted the dupes before and all seemed to be well after that. I tried to just remove the TEA cron functions this time to test if the error went away, but I still get it. During the install is another change made elsewhere in the ScheduledTasks.php. My Apache logs aren't giving much info.
Quote:end of file in /var/www/smf/Sources/ScheduledTasks.php on line 1688, referer: http://myurl/index.php?action=admin;area=mailqueue;sa=browse;f0978340=2360096e95c503d28e74735f6282e85c |

Xornicon Altair
Black Watch Syndicate Vitoc Health Services
32
|
Posted - 2014.03.22 16:07:00 -
[245] - Quote
Xornicon Altair wrote:I've just removed r2 from my server and I'm trying to install r5. Everything is okay until it gets to the actual install page and most of the files have an error next to them in big bold red letters that says "Modification parse error". I've tried proceeding anyways and it fails to install, but there are no other errors on the board.
I've downloaded the most recent package available from the first post in this thread.
SMF Version 2.0.6
Uploaded an image of what I'm talking about. This is what comes up when I'm trying to install the mod:
http://i.imgur.com/kQP5Vig.png This is the song.... |

Jen Moriarty
Love for You Stealth Wear Inc.
41
|
Posted - 2014.03.22 18:06:00 -
[246] - Quote
So I have found the problem with the script.
Apparently, TEA decides to call the update_user function even when the Openfire user does not exist, resulting in UserNotFoundException, and the Openfire user not being created. I am not sure why it thinks the Openfire user does exist |

Shin Chogan
Blueprint Haus Get Off My Lawn
57
|
Posted - 2014.03.22 19:58:00 -
[247] - Quote
Jen Moriarty wrote:So I have found the problem with the script.
Apparently, TEA decides to call the update_user function even when the Openfire user does not exist, resulting in UserNotFoundException, and the Openfire user not being created.
I think this is how the process played out: I tried to register a new user The user was written into the tea_jabber_users table, but for some reason was not written into Openfire. From now on, every subsequent call to this user will call the update_user function (and get a silent exception). This is clearly a bug.
Is there a way to read back the result of accessing the Openfire URL? In case of such exception, an add_user call should be made
Yes that is a known issue but is only a problem if something is wrong in the setup and the user doesn't get created in the first place or you allow your users to delete their accounts another way. As you say this is caused by the user not being created in the first place - you need to remove the entry from the jabber users table and then try and create the user again ... perhaps run a packet trace on the Openfire user service port and see what is going on. |

Shin Chogan
Blueprint Haus Get Off My Lawn
57
|
Posted - 2014.03.22 20:02:00 -
[248] - Quote
Zenith Gravit wrote:Shin Chogan wrote:Zenith Gravit wrote:I got my dirty install mostly cleaned up, but the user's profile page still has some extra fields and I'm just not sure what needs to be removed to clean it up. The Status, Main Matched Rules, Characters, ID from API page, and Verification Code from API Page fields are all duplicated once. I'm just trying to figure out how to clean that up. Screen shot ----> http://i.imgur.com/0nHoabh.png Its supposed to be like that. There is always an unfilled section so you can add a 2nd or 3rd or xth api key. Thank you for the clarification. I guess I didn't remember that being there. Also, I thought everything was working but I'm getting a PHP Parse error on the last line of ScheduledTasks.php, it's causing my mail queue to hang. I ran into this a week or so ago, it it was because there were duplicates of the TEA cron functions. I just deleted the dupes before and all seemed to be well after that. I tried to just remove the TEA cron functions this time to test if the error went away, but I still get it. During the install is another change made elsewhere in the ScheduledTasks.php. My Apache logs aren't giving much info. Quote:end of file in /var/www/smf/Sources/ScheduledTasks.php on line 1688, referer: http://myurl/index.php?action=admin;area=mailqueue;sa=browse;f0978340=2360096e95c503d28e74735f6282e85c
Nope just adds the stuff to the bottom of the ScheduledTasks.php though it does also add bits to the ManageScheduledTasks.english.php file |

Shin Chogan
Blueprint Haus Get Off My Lawn
57
|
Posted - 2014.03.22 20:05:00 -
[249] - Quote
Xornicon Altair wrote:Xornicon Altair wrote:I've just removed r2 from my server and I'm trying to install r5. Everything is okay until it gets to the actual install page and most of the files have an error next to them in big bold red letters that says "Modification parse error". I've tried proceeding anyways and it fails to install, but there are no other errors on the board.
I've downloaded the most recent package available from the first post in this thread.
SMF Version 2.0.6 Uploaded an image of what I'm talking about. This is what comes up when I'm trying to install the mod: http://i.imgur.com/kQP5Vig.png
I've not seen that one before but a quick Google turned up this :
Quote: It is essentially a matter of your host, for whatever reason the files couldn't be accessed by the package manager once unpacked. Usually that means there's some kind of permission issue with the files.
|

Xornicon Altair
Black Watch Syndicate Vitoc Health Services
32
|
Posted - 2014.03.22 20:39:00 -
[250] - Quote
Shin Chogan wrote:Xornicon Altair wrote:Xornicon Altair wrote:I've just removed r2 from my server and I'm trying to install r5. Everything is okay until it gets to the actual install page and most of the files have an error next to them in big bold red letters that says "Modification parse error". I've tried proceeding anyways and it fails to install, but there are no other errors on the board.
I've downloaded the most recent package available from the first post in this thread.
SMF Version 2.0.6 Uploaded an image of what I'm talking about. This is what comes up when I'm trying to install the mod: http://i.imgur.com/kQP5Vig.png I've not seen that one before but a quick Google turned up this : Quote: It is essentially a matter of your host, for whatever reason the files couldn't be accessed by the package manager once unpacked. Usually that means there's some kind of permission issue with the files.
Solved it. For some reason, SMF couldn't parse the .tgz file that I downloaded from you link, so, I extracted it, re-compressed into a .zip and it went through without a problem. This is the song.... |
|

Xornicon Altair
Black Watch Syndicate Vitoc Health Services
32
|
Posted - 2014.03.22 21:14:00 -
[251] - Quote
Xornicon Altair wrote:Solved it. For some reason, SMF couldn't parse the .tgz file that I downloaded from you link, so, I extracted it, re-compressed into a .zip and it went through without a problem.
Or... I thought I had.
The package manager says that it's installed, but there's no admin, or profile, option for it anywhere in the menus.
If anyone has any ideas, let me know. I need to go out, so, I can't troubleshoot this right now. This is the song.... |

lasterax
Stay Frosty.
5
|
Posted - 2014.03.23 00:01:00 -
[252] - Quote
lasterax wrote:Migrated my forum to get on the same server as comms. Thins have gone well except for when running the API check, I get the following error: 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 File: /var/www/forums/Sources/TEA.php Line: 2492 Checking the error log I also get the following: 8: Undefined property: TEA::$lastid Something I missed doing the move? --Rax
Any ideas on this one Shin? I've tried removing the mod and reinstalling and it doesn't seem to fix the trouble. Everything else appears to be working right so I'm stuck at what's causing the error.
--Rax |

Shin Chogan
Blueprint Haus Get Off My Lawn
57
|
Posted - 2014.03.23 09:57:00 -
[253] - Quote
lasterax wrote:lasterax wrote:Migrated my forum to get on the same server as comms. Thins have gone well except for when running the API check, I get the following error: 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 File: /var/www/forums/Sources/TEA.php Line: 2492 Checking the error log I also get the following: 8: Undefined property: TEA::$lastid Something I missed doing the move? --Rax Any ideas on this one Shin? I've tried removing the mod and reinstalling and it doesn't seem to fix the trouble. Everything else appears to be working right so I'm stuck at what's causing the error. --Rax
not yet .... I've not been able to trace a path that would not set TEA::$lastid |

Jen Moriarty
Love for You Stealth Wear Inc.
41
|
Posted - 2014.03.23 12:54:00 -
[254] - Quote
This problem is still ongoing. When I hijack the get_site() function to load my own Openfire access string, I get literally nothing back - an empty string. Not an "ok" or rejected response like what I get when I load this URL on my own browser, just empty. Openfire itself shows nothing in its logs. Running packet trace is not possible cause I'm running this on a virtual server, so the physical hardware is shared. |

Shin Chogan
Blueprint Haus Get Off My Lawn
57
|
Posted - 2014.03.23 14:07:00 -
[255] - Quote
Jen Moriarty wrote:This problem is still ongoing. When I hijack the get_site() function to load my own Openfire access string, I get literally nothing back - an empty string. Not an "ok" or rejected response like what I get when I load this URL on my own browser, just empty. Openfire itself shows nothing in its logs. Running packet trace is not possible cause I'm running this on a virtual server, so the physical hardware is shared.
what exactly are you doing when you say "hijack the get_site() function".
get_site returns whatever html the url it is fetching sends back. There is a 60 second time out so next question is does the get_site function take 60 seconds to come back ? In which case is it failing to connect to the openfire service. |

Jen Moriarty
Love for You Stealth Wear Inc.
41
|
Posted - 2014.03.23 14:19:00 -
[256] - Quote
Shin Chogan wrote: what exactly are you doing when you say "hijack the get_site() function".
get_site returns whatever html the url it is fetching sends back. There is a 60 second time out so next question is does the get_site function take 60 seconds to come back ? In which case is it failing to connect to the openfire service.
Print debug lines to see what exactly is going on. Like printing the output of curl_exec. And no, it doesn't take 60 seconds, it is immediate.
Next development. If, within get_site() I call a function to create an html page which redirects me to the Openfire URL, then I curl_exec THAT page, adding a user works. It has the unfortunate site-effect of a. leaving me on the redirected page, thus showing my passcode to the world and b. requiring that Openfire User Service IPs be open to the world. :( |

Shin Chogan
Blueprint Haus Get Off My Lawn
57
|
Posted - 2014.03.23 14:42:00 -
[257] - Quote
Jen Moriarty wrote:Shin Chogan wrote: what exactly are you doing when you say "hijack the get_site() function".
get_site returns whatever html the url it is fetching sends back. There is a 60 second time out so next question is does the get_site function take 60 seconds to come back ? In which case is it failing to connect to the openfire service.
Print debug lines to see what exactly is going on. Like printing the output of curl_exec. And no, it doesn't take 60 seconds, it is immediate. Next development. If, within get_site() I call a function to create an html page which redirects me to the Openfire URL, then I curl_exec THAT page, adding a user works. It has the unfortunate site-effect of a. leaving me on the redirected page, thus showing my passcode to the world and b. requiring that Openfire User Service IPs be open to the world. :(
It will also break all the other places that get_site is used 
so what is the url that get_site is trying to go to normally, without you making any modifications other than printing the url in get_site ? |

Jen Moriarty
Love for You Stealth Wear Inc.
41
|
Posted - 2014.03.23 14:53:00 -
[258] - Quote
Shin Chogan wrote:It will also break all the other places that get_site is used  so what is the url that get_site is trying to go to normally, without you making any modifications other than printing the url in get_site ?
Yup, I don't intend to leave it that way :)
http://URL:9090/plugins/userService/userservice/plugins/userService/userservice?type=add&secret=SECRET&username=jen_moriarty&password=1111&name=*%20Jen%20Moriarty&[email protected]&groups=Admins
The URL is right. If I copy it to my browser, it adds a user, but for some reason, it doesn't get sent to Openfire from TEA directly |

Shin Chogan
Blueprint Haus Get Off My Lawn
57
|
Posted - 2014.03.23 15:08:00 -
[259] - Quote
Jen Moriarty wrote:Shin Chogan wrote:It will also break all the other places that get_site is used  so what is the url that get_site is trying to go to normally, without you making any modifications other than printing the url in get_site ? Yup, I don't intend to leave it that way :) http://URL:9090/plugins/userService/userservice/plugins/userService/userservice?type=add&secret=SECRET&username=jen_moriarty&password=1111&name=*%20Jen%20Moriarty& [email protected]&groups=Admins The URL is right. If I copy it to my browser, it adds a user, but for some reason, it doesn't get sent to Openfire from TEA directly
Yes but remember your browser is making the request from your machine and the code is making it from a different one (the server itself). Assuming you are running both smf and openfire on the same server have you tried making the url http://localhost:9090 ? This is how mine is set.
The other thing I've not noticed if you've mentioned or not ... have you got the IP security turned on in the user service plugin ? again if this is turned on and you are running both smf and Openfire on the same server you need to add 127.0.0.1 |

lasterax
Stay Frosty.
5
|
Posted - 2014.03.23 15:31:00 -
[260] - Quote
Shin Chogan wrote:
not yet .... I've not been able to trace a path that would not set TEA::$lastid
edit : unless .... can you look in your settings table and find a value tea_nextpull. Also what happens if you run the TEA_cron.php script ?
There is a value for tea_nextpull: 1395427119.
When I execute TEA_cron.php I get:
API System Screwed : bool(false)
Thanks,
--Rax |
|

Shin Chogan
Blueprint Haus Get Off My Lawn
57
|
Posted - 2014.03.23 15:39:00 -
[261] - Quote
lasterax wrote:Shin Chogan wrote:
not yet .... I've not been able to trace a path that would not set TEA::$lastid
edit : unless .... can you look in your settings table and find a value tea_nextpull. Also what happens if you run the TEA_cron.php script ?
There is a value for tea_nextpull: 1395427119. When I execute TEA_cron.php I get: API System Screwed : bool(false) Thanks, --Rax
OK so there is your real problem ... your server can't even contact the api server this is how you are getting to a point where lastid is not defined.
You need to get to the bottom of that issue first. |

Minibren
Raven's Flight Havoc.
1
|
Posted - 2014.03.23 22:28:00 -
[262] - Quote
I have an issue with the API system.
Info: Server running ubuntu 12.04 on a digital ocean server. The mod seems to have successfully installed. Entering a corp api has not updated the system (says last updated never) Changing the API profile of a user returns "[ERROR] API is returning invalid XML" When trying to register with api this error message is displayed "API System Screwed - Can't fetch Toons"
Any ideas with what is causing this? Can't seem to find a solution. |

Shin Chogan
Blueprint Haus Get Off My Lawn
57
|
Posted - 2014.03.24 00:59:00 -
[263] - Quote
Minibren wrote:I have an issue with the API system.
Info: Server running ubuntu 12.04 on a digital ocean server. The mod seems to have successfully installed. Entering a corp api has not updated the system (says last updated never) Changing the API profile of a user returns "[ERROR] API is returning invalid XML" When trying to register with api this error message is displayed "API System Screwed - Can't fetch Toons"
Trying to run a full member check produces this error: "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 File: /var/www/Sources/TEA.php Line: 2492"
Any ideas with what is causing this? Can't seem to find a solution.
Seems like you are not getting anything sensible from CCP's api servers. As to the reason why ... that is the 64 million dollar question. Without packet traces or adding debug lines it is very difficult to tell more. |

lasterax
Stay Frosty.
5
|
Posted - 2014.03.24 02:23:00 -
[264] - Quote
Shin Chogan wrote:Minibren wrote:I have an issue with the API system.
Info: Server running ubuntu 12.04 on a digital ocean server. The mod seems to have successfully installed. Entering a corp api has not updated the system (says last updated never) Changing the API profile of a user returns "[ERROR] API is returning invalid XML" When trying to register with api this error message is displayed "API System Screwed - Can't fetch Toons"
Trying to run a full member check produces this error: "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 File: /var/www/Sources/TEA.php Line: 2492"
Any ideas with what is causing this? Can't seem to find a solution. Seems like you are not getting anything sensible from CCP's api servers. As to the reason why ... that is the 64 million dollar question. Without packet traces or adding debug lines it is very difficult to tell more.
Seems to be my issue as well as I'm running almost that exact same setup - except I'm running Ubuntu 13.04 on a Digital Ocean droplet. I can telnet to api.eveonline.com on port 443 so I'm not sure what the deal is yet.
--Rax |

Jessica Helsel
Raven's Flight Havoc.
0
|
Posted - 2014.03.25 00:19:00 -
[265] - Quote
lasterax wrote:Shin Chogan wrote:Minibren wrote:I have an issue with the API system.
Info: Server running ubuntu 12.04 on a digital ocean server. The mod seems to have successfully installed. Entering a corp api has not updated the system (says last updated never) Changing the API profile of a user returns "[ERROR] API is returning invalid XML" When trying to register with api this error message is displayed "API System Screwed - Can't fetch Toons"
Trying to run a full member check produces this error: "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 File: /var/www/Sources/TEA.php Line: 2492"
Any ideas with what is causing this? Can't seem to find a solution. Seems like you are not getting anything sensible from CCP's api servers. As to the reason why ... that is the 64 million dollar question. Without packet traces or adding debug lines it is very difficult to tell more. Seems to be my issue as well as I'm running almost that exact same setup - except I'm running Ubuntu 13.04 on a Digital Ocean droplet. I can telnet to api.eveonline.com on port 443 so I'm not sure what the deal is yet. --Rax
Not sure what instructrions you were following but I believe this is because you are missing php5-curl.
sudo apt-get install php5-curl
You might need to restart apache for this to make any difference. sudo service apache2 restart
Also I've noticed that the TEA files aren't executable, so if you go in to /var/www/TEA you can sudo chmod 755 ./* Also make sure they are owned by www-data. sudo chown www-data:www-data ./*
Again you might need to restart apache before you see any differences, I'm not sure there.
|

Jessica Helsel
Raven's Flight Havoc.
0
|
Posted - 2014.03.25 00:36:00 -
[266] - Quote
I'm having some other issues with the TS integration.
I can't find any solid information on the configuration so I'm not even 100% sure that I've got this set up right.
However when you try to register to TS from the forums all you get is an obscure error.
If pictures are worth 1,000 words, here's 3,000.
http://i.imgur.com/QBBL025.png http://i.imgur.com/RJOuswa.png http://i.imgur.com/LxI2zMu.png
I don't know PHP from my ass, I've looked but all I can figure out is this.
In /var/www/Sources is a file TEA_TS.php
Inside of that is a bunch of stuff but the interesting bits are these.
if($_POST['method'] == 'online' && $this -> modSettings["tea_ts_method_online"]){ stuff } elseif($_POST['method'] == 'create' && $this -> modSettings["tea_ts_method_create"]){ other stuff } elseif($_POST['method'] == 'priv' && $this -> modSettings["tea_ts_method_priv"]){ different stuff } else{ print the damn error you're seeing }
I don't know what the if, elseif, and elseif again are checking for exactly, but it's failing all 3 and hitting the catch-all else statement at the bottom and printing my error.
If I can get a hand that'd be great!
Thanks! |

lasterax
Stay Frosty. A Band Apart.
5
|
Posted - 2014.03.25 03:03:00 -
[267] - Quote
Jessica Helsel wrote:
Not sure what instructrions you were following but I believe this is because you are missing php5-curl.
sudo apt-get install php5-curl
You might need to restart apache for this to make any difference. sudo service apache2 restart
Also I've noticed that the TEA files aren't executable, so if you go in to /var/www/TEA you can sudo chmod 755 ./* Also make sure they are owned by www-data. sudo chown www-data:www-data ./*
Again you might need to restart apache before you see any differences, I'm not sure there.
Winner winner chicken dinner! Thanks very much!
--Rax
|

Jessica Helsel
Raven's Flight Havoc.
0
|
Posted - 2014.03.25 22:19:00 -
[268] - Quote
Jessica Helsel wrote:I'm having some other issues with the TS integration. I can't find any solid information on the configuration so I'm not even 100% sure that I've got this set up right. However when you try to register to TS from the forums all you get is an obscure error. If pictures are worth 1,000 words, here's 3,000. http://i.imgur.com/QBBL025.pnghttp://i.imgur.com/RJOuswa.pnghttp://i.imgur.com/LxI2zMu.png <-- error shows up [ERROR] Unknown method I don't know PHP from my ass, I've looked but all I can figure out is this. In /var/www/Sources is a file TEA_TS.php Inside of that is a bunch of stuff but the interesting bits are these. if($_POST['method'] == 'online' && $this -> modSettings["tea_ts_method_online"]){ stuff } elseif($_POST['method'] == 'create' && $this -> modSettings["tea_ts_method_create"]){ other stuff } elseif($_POST['method'] == 'priv' && $this -> modSettings["tea_ts_method_priv"]){ different stuff } else{ print the damn error you're seeing } I don't know what the if, elseif, and elseif again are checking for exactly, but it's failing all 3 and hitting the catch-all else statement at the bottom and printing my error. If I can get a hand that'd be great! Thanks!
For posterity, here is the answer to my own question. Check the "Allow Online Method" box.
http://i.imgur.com/5IyBAV0.png |

Bumse
Black Flag Operations The Kadeshi
62
|
Posted - 2014.04.02 20:48:00 -
[269] - Quote
Hi there!
Small issue after switching jabber host. We were earlier on running jabber och the same server but we needed to change host for the jabber service. Now we're running it externally and reconfigured the jabber settings in TEA to accommodate this.
The problem we are having now is that no Jabber groups are visible on the Jabber setup page. Users are able to change their passwords and connect, new users are able to create their logins etc ... there's just no jabber groups visible so we can start rebuilding our rules. User Service calls seems to be working just fine from the web host. If i enter some commands via lynx on the forum host, commands are accepted on the new jabber host just fine, if formatted correctly ofc.
I do have a (old?) table in the forum database named "forum_tea_jabber_groups" with the groups that existed before the jabber server move, is that one used? Can it conflict somehow?
I'm not sure on where to start looking so any pointers, hints or shoutouts would be appreciated :) Bring EVE into the 21st century, add some basic chat features IRC-clients have had since the beginning of the 1990's. Get proper chat hilighting into EVE! https://forums.eveonline.com/default.aspx?g=posts&t=97035 |

Shin Chogan
Blueprint Haus Get Off My Lawn
57
|
Posted - 2014.04.10 15:54:00 -
[270] - Quote
Bumse wrote:Hi there!
Small issue after switching jabber host. We were earlier on running jabber och the same server but we needed to change host for the jabber service. Now we're running it externally and reconfigured the jabber settings in TEA to accommodate this.
The problem we are having now is that no Jabber groups are visible on the Jabber setup page. Users are able to change their passwords and connect, new users are able to create their logins etc ... there's just no jabber groups visible so we can start rebuilding our rules. User Service calls seems to be working just fine from the web host. If i enter some commands via lynx on the forum host, commands are accepted on the new jabber host just fine, if formatted correctly ofc.
I do have a (old?) table in the forum database named "forum_tea_jabber_groups" with the groups that existed before the jabber server move, is that one used? Can it conflict somehow?
I'm not sure on where to start looking so any pointers, hints or shoutouts would be appreciated :)
The problem is with your TEA Jabber config ... SMF gets the Jabber groups by directly querying the jabber DB ... if you were running both on the same server previously you'll need to change the db host from localhost to your new fqdn or ip address ... you may also need to make config changes to the Jabber MySQL server config, db user accounts and any firewalls to allow connections from external hosts. |
|
|
|
|
Pages: 1 2 3 4 5 6 7 8 [9] 10 11 12 13 14 15 16 .. 16 :: one page |
First page | Previous page | Next page | Last page |