![]() |
Irc post Notifier -With eggdrop
Irc thread Notifier -With eggdrop [VB 2.2.x > 2.3.x]
https://vborg.vbsupport.ru/showthrea...threadid=39974 ################################################## ################### for installation on VB 3.x.x the only things that are different are the placement of the code-adds to /newthread.php and admin/index.php. the code-add of /newthread.php itself stays the same. admin/ircaddon.php, /irc.php and the required sql query also stays the same. since i dont have vb3 i cant check. if anyone tell me where the code should be in vb3, i will add it to this install text -- 1.0 this is an modification of dymo's Irc post Notifier without eggdrop, dymo should get all credit, cos i didn't do that much modifications to his hack. Also IRiDiuM deserves some credit for his tcl, thx dude :) https://vborg.vbsupport.ru/showthrea...threadid=38205 -- 2.0 removed reply announcement from irc.php and ircadmin.php ,irc.php has simplyfied code, added chan choice to the admin -- 2.9 code adjustment to newthread.php rewritten. added multiple channel support removed the ircaddon_install.php, everything is in this txt ################################################## ################### What it does: ------------ When a new thread is posted by a user on your board a message will be send to your eggdrop irc bot, and the bot echo's it to your irc channel *note: YOU NEED AN EGGDROP BOT CONNECTED TO AN IRC SERVER FOR THIS u can get eggdrop here: http://www.egghelp.org/ or windrop here: http://windrop.sourceforge.net/ other ircbots that can run tcl scripts could also be usefull ################################################## ################### When UPGRADING TO 2.0 --------------------- then you only have to overwrite/copy irc.php, ircadmin.php and vbulletin.tcl to the right places. NO updates to newthread.php newreply.php and admin/index.php are required When UPGRADING TO 2.9 --------------------- then you have to overwrite/copy irc.php, ircadmin.php and vbulletin.tcl to the right places. the old adjustment in newthread.php must be replaced with the new one also edit port number in vbulletin.tcl if you did that before and you have to reconfigure all options in the ircadmin ################################################## ################### place the files from the zip in: -------------------------------- ircadmin.php -> vb admin dir irc.php -> vb root dir vbulletin.tcl -> eggdrop script dir ################################################## ################### config your eggdrop: -------------------- edit in vbulletin.tcl if you want to use another portnumber then 1337, than edit that number edit your eggdrop config file (eggdrop.conf): add at the end: source scripts/vbulletin.tcl ################################################## ################### run required sql queries: -------------------------- add a new table with phpmyadmin > run the queries in install.sql ################################################## ################### php adjustments: ---------------- ++++++++++++++++++ open /newthread.php and find: ++++++++++++++++++ // redirect if ($postpoll) { $goto="poll.php?s=$session[sessionhash]&threadid=$threadid&polloptions=".intval($pollopti ons); } elseif ($visible) { $goto="showthread.php?s=$session[sessionhash]&threadid=$threadid"; } else { $goto="forumdisplay.php?s=$session[sessionhash]&forumid=$forumid"; } ++++++++++++++++++ under that add: ++++++++++++++++++ // irc addon $ircdata = $DB_site->query_first("SELECT * FROM ircaddon"); if($ircdata[ircthread] == "1") { $Action = "new"; $fid = $ircdata[ircchan1forum]; $ircforum = preg_replace("/[[:space:]]+/", " ", $fid); $ircforum = " ".$ircforum." "; $forumtoirc = "/ ".$forumid." /"; if (preg_match($forumtoirc ,$ircforum)) { $ircchan=$ircdata[ircchannel1]; require("irc.php"); } $fid = $ircdata[ircchan2forum]; $ircforum = preg_replace("/[[:space:]]+/", " ", $fid); $ircforum = " ".$ircforum." "; $forumtoirc = "/ ".$forumid." /"; if (preg_match($forumtoirc ,$ircforum)) { $ircchan=$ircdata[ircchannel2]; require("irc.php"); } $fid = $ircdata[ircchan3forum]; $ircforum = preg_replace("/[[:space:]]+/", " ", $fid); $ircforum = " ".$ircforum." "; $forumtoirc = "/ ".$forumid." /"; if (preg_match($forumtoirc ,$ircforum)) { $ircchan=$ircdata[ircchannel3]; require("irc.php"); } } // ++++++++++++++++++ open admin/index.php and find: ++++++++++++++++++ makenavselect("User Groups","<hr>"); ++++++++++++++++++ under that add: ++++++++++++++++++ //ircaddon makenavoption("Modify/Enable/Disable IRC","ircadmin.php?action=settings"); makenavselect("IRC"); ++++++++++++++++++ hacks done ################################################## ################### configure the ircaddon: ----------------------- go to the admin control panel and find "Modify/Enable/Disable IRC" on the left. configure all options notes: - IRC Forum ID`s put all your forum id's that you want to have notified in irc here, use only 1 space to seperate forumid numbers - IRC Server Address here you put the ip/hostname of your eggdrop bot - IRC Server Port here you put the port number which is set in the vbulletin.tcl script. This is the port# the bot listens to for notifier messages. in this case its 1337 ################################################## ################### now your done ################################################## ################### the following problems could occure: ------------------------------------ Connection Refused this error occures on 2 known occasions: 1# u have to make sure ur provider allows u to open a port (in this case 1337, u could try another port, but don't forget to also change it in the vbulletin.tcl) 2# make sure ur eggdrop has opened a port (1337) to listen for messages. -- Connection Timeout this error occures when your bot is offline, or the host of your vb board cant reach the bots ip -- slow displaying of the thread announcement is caused by the bot requesting ident information from the vb boards host. currently i haven't found any solution for this problem. adjusting the ident timeout setting on the bot doesnt help, but ive noticed that an eggdrop is faster then a windrop. if someone has more insight to this plz tell us -- hint: make sure a firewall is not blocking any communication lasttime i helped someone install, it didnt work cos the idiot didnt turned the firewall off on the bot box. after telling him for the 5th time 'turn the fecking firewall off' it worked so make sure nothing is blocking its communication, at the isp where your vb is running or at the box where the bot is running -- *504 views on previous attachment 1.0 *141 views on previous attachment 2.0 |
greate work
/me install |
gr8 work but i dont have a eggdrop or a shell to run it on
|
Any chance of a txt version of the instructions as the text is getting mixed up with the installer and its causing me loads of parse errors.
Also for those who use quick reply this will not work as it will bypass it if a member uses it to make a reply to a thread. HM |
I have the eggdrop installed and everything as you stated.
I run the script from IE6 and get Connection refused (111) When I make a post in the category # I choose, it takes a little while then it redirects but does not come to the channel and notify. I have it pointed at the eggdrop ip and port as stated also. What could the problem be. |
Quote:
Quote:
|
I changed ports to some others and same problem. I changed the ircd to unreal recently and got the same error but it did notify. This was with the previous release, not the eggdrop. I never tried the eggdrop with Unreal at that time though. Well anyways, I had many other problems so I had to go back to UIRCD 3.0.7 and I am getting the same problem which I hoped the eggdrop would fix. So in other words, I dont think the port is the problem cause it did work on Unreal with that same port.
|
Well, I didnt make the changes in newreply and new thread to the changes for this way, so I just did (dont know if they are the same).
I get a parse error and wondering something... $ircdata = $DB_site->query_first("SELECT * FROM ircaddon"); if($ircdata[ircthread] == "1") { $Action = "new"; $fid = trim($ircdata[ircforum]); $ircforum=explode(" ", preg_replace("/[[:space:]]+/", " ", $fid) ); while (list($key,$val)=each($ircforum)) { if ((strstr(" ".$forumid," ".trim($val))!="") || ($ircdata[ircforum] == 0)) { require("irc.php"); } "Seems theres two } 's missing but I do not know where they belong?" |
I put two } at the end of that to stop the parsing and I was connected to the bot that I have eggdrop running in the channel to see if I could see anything funny
This is what I seen... <xxxx> [16:04] Telnet connection: xxx.xxx.xxx.19/32989 <xxxx> [16:04] Timeout/EOF ident connection |
Quote:
i tested the install_ircaddon.php script, it runned ok 4 me u shoeld read very good, i think it should work, if u have connection refused, the script works, but u need to find a better port , maybe ask your host what ports u may open |
Quote:
|
Quote:
PHP Code:
it runns exellent with my crap but i know there are some problems with newreply, but thats of later concern, it should notfiy whit the ++++ i gave u, unless u got connection refused.. |
Quote:
Change this: { require("irc.php"); } to: { require("irc.php"); } } } Also, the newreply.php check for action=xxx Another error is it should =="reply" not "new" BTW, I am in no way putting your work down dong, I am just trying to help others with the same probs I went through. I also got it to work .... yippie :) |
Does eggdrop need to run on the same server as the web server ? Because I have a seperate shell for eggdrop on a different server then the web server where I will run the .php files.
|
No, I am running it on two different servers.
|
Quote:
i updated the zip |
Quote:
added an installation.txt which include the script hacks its in the new zip |
Quote:
HM |
anyone got this to work at all?
|
yes I have...whats your prob, maybe I can help you as I had lots of probs but I did get it working :)
|
well when i make a post, i have my eggdrop in the chan and everyhiing...the post goes thru and up on the board...but there is no announcement in the irc chan :( ...
|
thanks , i am using it on my board ;)
[high]* Pady installed it ;)[/high] |
hi donq glad to c u have started yer own thread
as u know i installed your eggdrop mod from the -no eggdrop thread just a small question have my bugs been addressed with yer hack 1. get duble announce on sum forums mainly with an id 20+ 2. forum that i have not specified is announcing tho others that i have not specified are cool 3.on reply the forum name is not displayed in the announce apart from these as u know i have it working gr8 an the hack is the coolerst 1 yet |
The hack is working for me, new thread is created and post annouced on irc but we aren't taked back to the thread, we stay stiucked on a white page.
----edited--- Nevermind, I forgot that you should modify the newthread.php in two places, witch was not specified in the install file I think... All working perfectly now, awesome hack :D |
OK, one more thing! Now that I got it working perfectly, I don't understand how to custumize the way the IRC messages looks. What should I do if I want the text not inverted, blue or green with only the username, title and forum in bold ?
I assume this is in those parts of irc.php, but I don't understand how I should modify it... PHP Code:
|
hello i installed this hack
but its not notifing new threads i have modified this in newthread.php $goto="forumdisplay.php?s=$session[sessionhash]&forumid=$forumid"; } // irc addon $ircdata = $DB_site->query_first("SELECT * FROM ircaddon"); if($ircdata[ircthread] == "1") { $Action = "new"; $fid = trim($ircdata[ircforum]); $ircforum=explode(" ", preg_replace("/[[:space:]]+/", " ", $fid) ); while (list($key,$val)=each($ircforum)) { if ((strstr(" ".$forumid," ".trim($val))!="") || ($ircdata[ircforum] == 0)) { require("irc.php"); } } } eval("standardredirect(\"".gettemplate("redirect_p ostthanks")."\",\"$goto\");"); } else { //create new thread |
can i install it on a 2.2.1 vbulletin ???
|
yes
|
I have:
newthread.php PHP Code:
PHP Code:
PHP Code:
Regardless of whether a new thread is started or a reply to an existing thread is posted, I always get the same message on IRC of: [23:37] (@cyoot): {New reply in: Subject: Mac Users. Thread starter: Ali H, New poster: Frank. } Note "new reply", never says "new thread". Also, how can the braces around it be removed. Also, why does the forum name not show up? Thanks. |
The hack works really great. Could one easily make a direct link to the post/thread?
|
It would be great if someone with .tcl and .php knowledge could clean up the files so that irc post thread stuff is removed and it wont timeout on the ident to the bot etc, which would save SO much time when posting new threads/posts.
Currently I only let it do threads, since they are made less. new reply would be great, but ppl seriously complain a lot about the lag on the forum. |
I just run into a bug.
When someone starts a poll, it will announce the thread (which is actually poll.php?something.. so the user could edit the post (bad vB!) or they get a msg that the poll can't be edited because i am not the owner of it. It SHOULD say the url to the thread, and not the poll :P |
Works fine for me just one thing though it updates to the IRC Chan all most instantly but then it sits there for a minute or so b4 it post the actual message in the forum?
Great work btw :-) Code:
<? |
No matter what I do, the private forum, with forumid XX keeps getting posted, while all the other forums that are not listed don't get posted.
Uhm, forums to include: 1,2,3,4,5 private mod forums: 6,7,8 and it posts on irc: 1,2,3,4,5,8 So .. how to exclude that one that it shouldn't but still does? |
can anyone help and to save myself a load of grief can you answer this quick question
i dont have eggdrop from shell so if i was to say run it from me comp (localhost) would that not make it work ? as at moment this is only way for me to get an eggdrop up and running. |
I have an eggdrop installed and did the file edits, but I think I edited the wrong parts. Since there are multiple appearences of the lines you have to find. Could someone post their newreply & newthread part? I am listening on port 22, this is the port I connect to using SSH. I also get an tcl error when I connect. WHAT'S GOING WRONG!? PS. I'm new to eggdrop :p
|
Thanks for the hack it's really a great one but there's a ptoblem..
Either it's posting from all the forums , or either if i choose not to post all forums, it dosen't post at all.. I'm using an eggdrop and a vbb version 2.2.7.. maybe it dosen't work on this version or something ? :/ |
I installed the hack, too. Works fine. But one problem: Some of the buttons in admin CP seem to have no function or not the function they should have. Look at the end of my posting, there u can see what the bot does depending on what files are checked ind admin CP. I only want to turn off the notification on new replys!
I would be very thankful for hints to solve this problem. Below u can see my edited files: newreply.php: Code:
// irc addon Code:
// Create a notice on irc channel Code:
<? What the bot does: [x] = set to "on" in Admin CP [ ] = set to "off" in Admin CP 1) Irc Post Notification Addon 2) Irc All New Threads Notification Addon 3) Irc All New Reply's Notification Addon Case 1: 1) [ ] 2) [ ] 3) [x] ---> Bot does nothing Case 2: 1) [ ] 2) [ ] 3) [ ] ---> Bot does nothing Case 3: 1) [ ] 2) [x] 3) [ ] ---> Bot posts new threads and new replies Case 4: 1) [x] 2) [ ] 3) [ ] ---> Bot does nothing Case 5: 1) [ ] 2) [x] 3) [x] ---> Bot posts new threads and new replies Case 6: 1) [x] 2) [x] 3) [ ] ---> Bot posts new threads and new replies Case 7: 1) [x] 2) [ ] 3) [x] ---> Bot does nothing Case 8: 1) [x] 2)[x] 3)[x] ---> Bot posts new threads and new replies I am running vBB 2.2.6 Any hints to make the bot only post on new threads? |
I found the buggy thing :)
Take newreply.php and search for: Code:
if($ircdata[ircthread] == "1") The ON/OFF - Option for New Reply Notification should work now :) |
no matter what i do it never dispays the new thread although it does display the new reply's how can i fix this ?
|
All times are GMT. The time now is 04:46 PM. |
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:
|