![]() |
answers in bold text below in quote, hope that helps
Quote:
|
great,thx, helped me a lot :)
is it possible to add my own smilies, or can i change the codes for the smilies? i hope so... |
flashchat questions and info can be found on it's website :
http://www.tufat.com/s_flash_chat_chatroom.htm and it's discussion forums: http://www.tufat.com/phpBB2/index.php?c=4 |
ok,got all answers, thanks a lot :)
|
If you have to login all the time part of it could be that you are when leaving clicking the close button for flash chat, logging you out of the chat. Where you should just close the browser, then you will not have to login each time, and your settings will be automatically saved.
Hope that helps some people |
Installed and everything work for me but other members do not have permisson to enter.
what's next? |
Quote:
Quote:
|
Is there anyway to get the flashchat to take on the look of the forum???
Thanks, Itworx4me |
Quote:
Thanks Paul |
Quote:
|
Ok i have 1 Jr Admin and his user group is 9
HTML Code:
//Set Staff groups |
Have you removed the group 9 entry from the banned section ?
|
Quote:
Racejunkie hangs his head in Shame.. :tired: Thanks man Iv'e been looking at this screen to long..lol |
Quote:
|
Paul,
Love the hack! I have a problem with my time stamping, it seems as though the chat timestamping is ahead by one hour for all users? I can't seem to figure out where to fix this? I tried modifying the flashchat config file line: Code:
'timeOffset' => 0, //sets server time offset (needed only to correct server timezone problem), minutes The time stamping in my vb forum are correct. Any suggestions? TIA. |
Quote:
Quote:
|
after install i just get a white screen ?
|
Great mod. A Ihave found Flashchat because of it, also. Its right what my users need. So thank you very much!
The only thing is that it doesn't add "Chat" to the main menu, but I've found a way, so anyway... |
thats just the question i was going to ask, how do i add CHAT to the menu
its ok i found it http://www.tufat.com/docs/flashchat/vbulletin.html |
Quote:
I'll post the question over there :) Thanks again for a killer hack! |
Paul
I have installed the FlashChat and made all the modifications on your patch. I first installed it to intergrate with vB3.5 stable R3 and when I signed into the Forum the Chat menu appeared, clicked on it and went straight to a room. It was great. The less my members have to log in to features the better. Then all of a sudden it stopped allowing me to enter without logging in, no matter if I was logged into vB or not. I tried not intergrating, I tried freestyle. Now when I re-install it I see no rooms. No matter what I do now something is different. I think I have been at to long. I know it will work, but I am doing something wrong and I can't see it. Please advise. :tired: I looked in the TuFat site for an upgrade but didn't see one. Regards Don McLaughlin |
Things never just stop working, there is always a reason, something has been changed.
Please read the "support" note in the first post and PM me the appropiate details. Also, you are not currently showing as having this hack installed, please click install if you require support, thanks. :) |
Quote:
I couldn't agree with you more. That's why I feel it is something I am doing. I went over the editing of the patch and it looks correct. But things change when you stare at it to long. Anyway I reinstalled it, logged into vB53 and clicked on the flashchat button and went straight to a room, got out of it and tried to get back in and the login dialog box pops up. Look for a PM with information on site. This is deeply appreciated Regards Don McLaughlin |
This is prob a really dumb question and may have been answered many times but i cant find it.
It does not seem to be transfering the username and password from the forum, i have to login manualy. |
Nice hack....2 problems
1. When a i'm logged into my vbulletin and i goto the chat....i see that whole login page (with the different login methods, acme widgets demo etc).....should it be doing this???? i want it to go straight to chat 2. if anyone member or not is on that chat/index.php page they can access the admin part of the chat......what do i do??? Thanks. Peace |
Quote:
You may have been doing what I have been doing. When I log into the forums I wasn't checking the "Remember Me" box. This will create a cookie so the FlashChat will see you as well. Now when I do this and click FlashChat I go right to a room. I hope this helps. Regards Don |
fixed my issue. Also deleted index.php from the chat page so people cant get there too.....
Thanks. Peace |
Well Im having different issues, I modified the files went to my website and ran the install I picked VB3.5 and got to section 2 when I hit next the screen went blank and nothing else happens. I cannot get past this part..
|
Quote:
You need to install your flashchat within the forums directory. Example: bbs/upload/chat I hope that helps. Regards Don |
Quote:
find: Code:
$vbpath = realpath(dirname(__FILE__)); Peace |
Fatal error: Call to a member function on a non-object in /usr/local/home/httpd/vhtdocs/dsvr.claretandbanter.co.uk/chat/inc/classes/chatServer.php on line 112
I get this when going to the admin section. Install didn't give me any errors tho. Using the latest version of flashchat 4.3.3 |
^^Go back to the "in inc\classes\connection.php ;" file and make sure the edit change is correct.
Peace |
//Touch connection
$stmt = new Statement("UPDATE {$GLOBALS['fc_config']['db']['pref']}connections SET updated=NOW() WHERE id=?"); $stmt->process($this->id); //Touch room $this->updateSelfRoom(); return; } } $this->id = md5(uniqid(rand(), true)); $this->userid = ChatServer::isLoggedIn( $args ); $this->roomid = $this->getAvailableRoom($GLOBALS['fc_config']['defaultRoom']); $color = $GLOBALS['fc_config']['themes'][$GLOBALS['fc_config']['defaultTheme']]['recommendedUserColor']; if($color == null) $color = 0xFFFFFF; $this->color = $color; $this->state = 1; $this->lang = $GLOBALS['fc_config']['defaultLanguage']; // Paul M - Real ip detection $realip = ''; $proxyip = ''; $ignoreprivate = true; // Set to false to allow private 'real' ip's // if ($_SERVER['HTTP_FROM'] != '') $proxyip = $_SERVER['HTTP_FROM']; if ($_SERVER['HTTP_FORWARDED'] != '') $proxyip = $_SERVER['HTTP_FORWARDED']; if ($_SERVER['HTTP_CLIENT_IP'] != '') $proxyip = $_SERVER['HTTP_CLIENT_IP']; if ($_SERVER['HTTP_X_FORWARDED_FOR'] != '') $proxyip = $_SERVER['HTTP_X_FORWARDED_FOR']; if (preg_match("#\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}#" , $proxyip, $iplist)) { $proxyip = $iplist[0]; if ($ignoreprivate and preg_match("#^(127|10|172\.(1[6-9]|2[0-9]|3[0-1])|192\.168|169\.254)\.#", $proxyip)) $proxyip = ''; } else $proxyip = ''; if ($proxyip == '') $realip = $_SERVER['REMOTE_ADDR']; else $realip = $proxyip; $this->ip = ($args['ip'] == null)? $realip : $args['ip']; Taken from my connection.php |
Quote:
I'm working on a new CMS file that should eliminate this problem, it also removes the need to enter your vb licence number in the file (and also updates your location in the vb session table when you login). If anyone would like to test it please drop me a PM with your e-mail address. |
Quote:
When I use my IE 6 I used to get nothing so I turned off the popup blocker in that. Now as I close it I get a pop up that just hangs and stays there and never closes or logs me out? Any ideas? |
Quote:
|
Quote:
Thanks for this great well supported hack.............. |
Quote:
|
I have uploaded the new version.
Quote:
Import the plugins as a product using the vb Product Manager. Upload the new vbulletin35CMS.php to the flashchat /inc/cmses/ folder. If you use custom usergroups, edit the new CMS file to give them access (note, the section to edit is totally different and near the bottom of the file). |
Great fix and great upgrade. Thanks Paul :D
BTW Sorry I didn't see the request for wanting to test it first. Regards Don |
All times are GMT. The time now is 12:39 AM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|