The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
YAPIH (Yet Another PHPMyChat Integration Hack) 1.0 Details »» | |||||||||||||||||||||||||||
YAPIH (Yet Another PHPMyChat Integration Hack) 1.0
Developer Last Online: Nov 2002
YAPIH (Yet Another PHPMyChat Integration Hack) 1.0 by Joshua McNeese <jmcneese@enterthemuse.com>
Now, first off, this is not an 'out-of-the-box' hack, that you can just uncompress and change a config file and expect to work right off the bat. This hack was the result of me spending a considerable amount of time hand-editing files and replacing variables to convice PHPMyChat to use the VBulletin user database table. You will have to modify this to work with your server/configuration, and if you are not familiar with the PHP internals of VBulletin or with MySQL, turn back now. You have been warned. (1) Uncompress YAPIH-1.0.zip in the ServerRoot of your server, so that you will access the chat via http://yourhost.com/chat/ (2) Execute the SQL commands in the file 'chat.sql'. This will create the tables needed for PHPMyChat as well as modify your user table. Altering your user table is dangerous, so be sure to have backups handy. (3) Modify your VB templates: ADD these two variables to your 'phpinclude' template: PHP Code:
(4) Edit the /chat/config/config.lib.php3 to match your server/configuation/preference. (5) Now, the last (and tricky) part. What you have now is a working PHPMyChat installation that will authenticate on the VBulletin user table, if you followed the instructions faithfully and received no errors. What must be done now is provide your users with a way to access the chatrooms that you have created. I do this via a DHTML/PHP4 menu panel that lists the available chatrooms, and opens the chatroom in a 600x400 java popup box. You can do this anyway you want, so long as the link is provided via a template in VBulletin, or if you know how to pass variables to custom PHP scripts from within the 'phpinclude' template (which is what I do). The URL you must use is in this format: Code:
/chat/index.php3?U=$chatname&PWD_Hash=$chatpass&Ver=H&L=english&R0=$chatroom&T=1&D=10&N=200&EN=1 To see the end-user representation of this hack, go to http://www.enterthemuse.com/ and login as 'test', password 'test'. On the left side of the site is a panel-based menu that will include a section 'Chat'. Take a look around, pay attention to where the URLs point and try it out. It might work for you, it might not, it's totally dependent on your understanding of how to pass variables from your VB templates (in particular 'phpinclude'). Try it, and if all else fails, post your experiences on vb.org. Download it HERE. Good luck, Joshua McNeese Show Your Support
|
Comments |
#22
|
||||
|
||||
Quote:
[high]* TalkHardRandy hoping... [/high] [high]* TalkHardRandy praying...[/high] |
#23
|
||||
|
||||
Very intresting hack though I'm not sure what I did wrong. I decided to test out the installation process on a clean version of vb2.2.6 on a server I have at home and for some reason it isn't cooperating..
I can't get people to login nor have I figured out. I did as suggested, even added the additional coding to the phpinclude template (mind for some reason the server decided not to connect to the mysql) Could someone enlighten what I did wrong here? |
#24
|
|||
|
|||
I'm fairly new to vB but catch on quickly. I'm also learning php and can pass variables. I'd like to completely install this hack, but I have a couple questions:
1) For this hack to work, does the phpmychat table need to be created as a table within the same db as vB? I've created a separate table for phpmychat. 2) phpinclude has been edited to add the vars $chatname and $chatpass - do I need to modify global.php to include this file, or is it already an included file? I can check this one myself, I suppose. 3) Last question. The var $chatroom can be defined by me for use on a button or {a href} links. But what is the content of this var? The name given in phpmychat? We have multiple 'rooms' already using another software tool, but would prefer embedded integration with vB. I'm using vB 2.2.6. phpMyChat is installed and functional. I call it using a simple button that opens it as target=_blank so my users never really leave vB. I can certainly change this. HEY! One more question. Is there a way to show in Who's On-Line which users are in chat? That would be kewl! |
#25
|
|||
|
|||
I'm really surprised that I haven't received a single response and it has been several days. At any rate, I have answered most of my own questions. Here is where I am at:
I have added: Code:
$chatname=str_replace(" ", "%20", $bbuserinfo[username]); $chatpass=$bbuserinfo[password]; $chatroom="General"; I can log into phpMyChat just fine without integration. It works. What am I missing? |
#26
|
||||
|
||||
How do I access administrative features in phpmychat? I get Warning: Failed opening './localization/6.lib.php3' for inclusion (include_path='.:/usr/share/php') when I try to use it :-X
|
#27
|
|||
|
|||
Am having trouble getting phpmyChat (integrated with my vbulletin userbase) to allow users with AOL 7.0 to enter chat. Anyone else experienced this and more importantly, anyone else figure a way to fix this?
|
#28
|
||||
|
||||
Quote:
PHP Code:
|
#29
|
|||
|
|||
Quote:
The only way I got AOL users to be happy in chat is to tell them to use Internet explorer... Otherwise they login ok but cant post and get logged out before than can post I was looking to integrate the phpmychat into my VB forum to keep the chat trolls to a minimum but so far the hacks seem unreliable Doug |
#30
|
|||
|
|||
I too have the same problem with AOL users for the last few weeks. Anyone any idea of what the problem might be?
|
#31
|
|||
|
|||
hey guys...
I did some work, and came up with a 'chat entry page' for this hack. Just add a link somewhere on your forum for CHAT - that points to this page . You can even link to this page from any html, ssi, shtml or whatever page. What it does is transfer all the variables for you, and give the user some info about chat (how many people are in chat, who they are, what chat rooms are open) -- I also thought it would be a good place to display rules and stuff. This also makes the hack easier to install, because you don't have to edit any of the templates or php files. (not really a big deal anyway) this is very ugly, and is just for illustration purposes right now. Most of the code (99%) is from what version posted earlier, so I can't really take much credit for any of this... this version does not show a list of available chat room, as I plan to control what rooms are open myself by editing this file. I generally only use one chat room. - but this part wouldn't be too hard to add. (I left the code needed for it in) Maybe after I finish this, I will post a better looking version of it.-- Let me know if anyone is interested in seeing the finished entry page. I am pretty new to this stuff, and I KNOW there is some extra code in there that I don't need (but I'm not done yet) -- I am open to sugestions of what else people would like to see in here. You will have (AT LEAST) have to do some edits here, especially the login stuff at the bottom -(www.yoursite.com) This script drops straight in your forum folder. with a little html cleanup, this will be a nice piece! |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|