Jump to content


X7 Chat


9 replies to this topic

#1 pre

  • Members
  • 47 posts
  • United States

Posted 05 February 2007 - 07:39 PM

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?

#2 visiblesoul

  • Administrators
  • 551 posts
  • Location:Earth
  • Texas

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?
Hello pre-

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 pre

  • Members
  • 47 posts
  • United States

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?

#4 visiblesoul

  • Administrators
  • 551 posts
  • Location:Earth
  • Texas

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?
I don't know this script but why does the space cause problems? Is there an error message or what happens when a user with a space in their username tries to use the x7Chat PM?


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 pre

  • Members
  • 47 posts
  • United States

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.

#6 visiblesoul

  • Administrators
  • 551 posts
  • Location:Earth
  • Texas

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...

$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 pre

  • Members
  • 47 posts
  • United States

Posted 26 February 2007 - 11:40 PM

this got worked out. Thanks

#8 visiblesoul

  • Administrators
  • 551 posts
  • Location:Earth
  • Texas

Posted 27 February 2007 - 01:11 PM

pre said:

this got worked out. Thanks
How? It would be nice to know the solution to the issue since many people will find this topic through a search and I know by experience that it is always disappointing to find a topic addressing your issue with no solution posted.


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 pre

  • Members
  • 47 posts
  • United States

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(" ","_")

#10 visiblesoul

  • Administrators
  • 551 posts
  • Location:Earth
  • Texas

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(" ","_")
Excellent. Thanks. That's good to know. ;)


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