DKC,
x7Chat version three will be coming out soon and it's suppose to be able to integrate with phpbb3, so if it does would it then integrate with mkportal too?
X7 Chat
Started by pre, Feb 05 2007 07:39 PM
9 replies to this topic
#1
Posted 05 February 2007 - 07:39 PM
#2
Posted 06 February 2007 - 12:07 AM
pre said:
DKC,
x7Chat version three will be coming out soon and it's suppose to be able to integrate with phpbb3, so if it does would it then integrate with mkportal too?
x7Chat version three will be coming out soon and it's suppose to be able to integrate with phpbb3, so if it does would it then integrate with mkportal too?
Normally if a forum add-on works with the forum then it will work when the forum is integrerated into MKPortal. Sometimes there is a minor modification or two needed but usually it just works as-is.
-=DKC=-
Please note that I offer free support on this forum in my free time. Depending on how much work I have backlogged it may take me a week or more to answer questions. I am not ignoring you. I answer everyone but please be patient. Thanks.
Disclaimer: All forum posts, including code examples, on this forum are offered for free in the hope that they will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Use code examples at your own risk.
"If at first you don't succeed, keep on suckin' til you do succeed." -Curly Howard
#3
Posted 25 February 2007 - 12:04 AM
DKC,
Regarding x7Chat it has a private message in it's chat but usernames that have a space between names cannot use the private message would you be able to tell me how I might modified it that it would?
Regarding x7Chat it has a private message in it's chat but usernames that have a space between names cannot use the private message would you be able to tell me how I might modified it that it would?
#4
Posted 25 February 2007 - 11:01 AM
pre said:
DKC,
Regarding x7Chat it has a private message in it's chat but usernames that have a space between names cannot use the private message would you be able to tell me how I might modified it that it would?
Regarding x7Chat it has a private message in it's chat but usernames that have a space between names cannot use the private message would you be able to tell me how I might modified it that it would?
Please note that I offer free support on this forum in my free time. Depending on how much work I have backlogged it may take me a week or more to answer questions. I am not ignoring you. I answer everyone but please be patient. Thanks.
Disclaimer: All forum posts, including code examples, on this forum are offered for free in the hope that they will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Use code examples at your own risk.
"If at first you don't succeed, keep on suckin' til you do succeed." -Curly Howard
#5
Posted 25 February 2007 - 12:35 PM
When you click on the private message in the chat room another window is suppose to open up. It works when i'm in the chat as admin, my username for my regular account is setup Fisrt_Last name and it works, but any classmate who has register on my site whose username is not all connected together it doesn't work.
Also when you register on x7Chat site you have to register with the username all as one word. I had before installing it on my sites, setup a stand alone not integrated into the sites yet and when I register a couple of usernames for testing I set them up as one continueous name without a break. The window opened for the other classmates then.
So i'm thinking it is the username that is causing it.
Also when you register on x7Chat site you have to register with the username all as one word. I had before installing it on my sites, setup a stand alone not integrated into the sites yet and when I register a couple of usernames for testing I set them up as one continueous name without a break. The window opened for the other classmates then.
So i'm thinking it is the username that is causing it.
#6
Posted 25 February 2007 - 12:51 PM
Well you could replace the spaces with underscores or remove spaces altogether.
You could do something like this...
You could do something like this...
$username = str_replace(" ", "_", $username);
or $username = str_replace(" ", "", $username);
Of course these are only examples. I don't know what variables are used in the chat module.
Please note that I offer free support on this forum in my free time. Depending on how much work I have backlogged it may take me a week or more to answer questions. I am not ignoring you. I answer everyone but please be patient. Thanks.
Disclaimer: All forum posts, including code examples, on this forum are offered for free in the hope that they will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Use code examples at your own risk.
"If at first you don't succeed, keep on suckin' til you do succeed." -Curly Howard
#7
Posted 26 February 2007 - 11:40 PM
this got worked out. Thanks
#8
Posted 27 February 2007 - 01:11 PM
pre said:
this got worked out. Thanks
Please note that I offer free support on this forum in my free time. Depending on how much work I have backlogged it may take me a week or more to answer questions. I am not ignoring you. I answer everyone but please be patient. Thanks.
Disclaimer: All forum posts, including code examples, on this forum are offered for free in the hope that they will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Use code examples at your own risk.
"If at first you don't succeed, keep on suckin' til you do succeed." -Curly Howard
#9
Posted 27 February 2007 - 09:26 PM
The webmaster for x7Chat sent me the solution for it to work with phpbb. It was similar to what you had mentioned:
Private Chat for x7Chat for username to work properly:
Hi,
Try this: in sources/frame.php find:
'Pm'+userInfo['username']
And replace it with:
'Pm'+userInfo['username'].replace(" ","_")
Private Chat for x7Chat for username to work properly:
Hi,
Try this: in sources/frame.php find:
'Pm'+userInfo['username']
And replace it with:
'Pm'+userInfo['username'].replace(" ","_")
#10
Posted 27 February 2007 - 10:18 PM
pre said:
The webmaster for x7Chat sent me the solution for it to work with phpbb. It was similar to what you had mentioned:
Private Chat for x7Chat for username to work properly:
Hi,
Try this: in sources/frame.php find:
'Pm'+userInfo['username']
And replace it with:
'Pm'+userInfo['username'].replace(" ","_")
Private Chat for x7Chat for username to work properly:
Hi,
Try this: in sources/frame.php find:
'Pm'+userInfo['username']
And replace it with:
'Pm'+userInfo['username'].replace(" ","_")
Please note that I offer free support on this forum in my free time. Depending on how much work I have backlogged it may take me a week or more to answer questions. I am not ignoring you. I answer everyone but please be patient. Thanks.
Disclaimer: All forum posts, including code examples, on this forum are offered for free in the hope that they will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Use code examples at your own risk.
"If at first you don't succeed, keep on suckin' til you do succeed." -Curly Howard
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users













