vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Major Additions - Talkerbot V2.2.3 (AI Posting Bot) (https://vborg.vbsupport.ru/showthread.php?t=126386)

SaintDog 09-15-2006 04:04 AM

Perhaps I am overlooking something or it is a mistake on my part, though when the bot replies, it does not update the last post information, so the post appears to be a mystery when viewing the last post column.

[Edit: When rebuilding the forum info, it shows the last post as correct, so the forum information isn't being rebuilt when a reply is being made]

bigtime 09-15-2006 06:22 AM

I was running this on a former version of vbulletin. Since upgrading to vb 3.6.1 I too get absolutely no response from the bot. I've checked and double checked everything and am 99.9% sure I set it up correctly. My bots table is also empty.

Thanks,

Tim

Meta 09-15-2006 07:17 AM

(Did you upload the ewt_talkerbot.php?)


There is a nice Aiml-Editor downloadable over there:

http://www.gaito.de/content/aiml/default.asp

But it's still beta ... and likes to crash sometimes. It is good for testing aiml-files if they are valid and for testing responses.

SaintDog 09-15-2006 02:10 PM

@bigtime: My installation is on 3.6.1 and it is working just fine, however, as stated previously, the last post is not "indexed" so to speak, rather, it's not updated when a post is made by the bot.

Run over the installation instructions once more and check to see if you missed anything.

bashy 09-15-2006 02:40 PM

Just had this....

A members posted this "what a shame, Schumacher has been a true great, hope he wins the championship to round off a truly wonderful career."

then the bot posted this

"shame, Schumacher has been a true great, hope he wins the championship to round off a truly wonderful career is a shame, Schumacher has been a true great, hope he wins the championship to round off a truly wonderful career."

Any thoughts on this please, would rather not have a parrot!! lol

KW802 09-15-2006 03:16 PM

Quote:

Originally Posted by Meta
(Did you upload the ewt_talkerbot.php?)


There is a nice Aiml-Editor downloadable over there:

http://www.gaito.de/content/aiml/default.asp

But it's still beta ... and likes to crash sometimes. It is good for testing aiml-files if they are valid and for testing responses.

Thanks for the link. I had come across that before in my searching for some AIML files but I did not realize that the beta was a free download.

New weekend toy to play with. :D

caper 09-15-2006 05:55 PM

Hello,

I can't seem to get the," Run http://www.satreactor.com/forum/alic.../botloader.php this can take a good 30 min because it runs 300,000 queries", to work.

All I get is,"Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@satreactor.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request."

The Talkerbot does post already but only says,"Im sorry but I was not able to form a reply right now".

My setup in dbprefs.php

$rootdir= "/usr/home/satreact/domains/satreactor.com/public_html/forum/alice/aiml/";

require('/usr/home/satreact/domains/satreactor.com/public_html/forum/includes/config.php');

$DB_HOST=$config['MasterServer']['servername'];
$DB_UNAME=$config['MasterServer']['username'];
$DB_PWORD=$config['MasterServer']['password'];
$DB_DB=$config['Database']['dbname'];


Thanks for you help and support...

eXtremeTim 09-15-2006 06:57 PM

Quote:

Originally Posted by caper
Hello,

I can't seem to get the," Run http://www.satreactor.com/forum/alic.../botloader.php this can take a good 30 min because it runs 300,000 queries", to work.

All I get is,"Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@satreactor.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request."

The Talkerbot does post already but only says,"Im sorry but I was not able to form a reply right now".

My setup in dbprefs.php

$rootdir= "/usr/home/satreact/domains/satreactor.com/public_html/forum/alice/aiml/";

require('/usr/home/satreact/domains/satreactor.com/public_html/forum/includes/config.php');

$DB_HOST=$config['MasterServer']['servername'];
$DB_UNAME=$config['MasterServer']['username'];
$DB_PWORD=$config['MasterServer']['password'];
$DB_DB=$config['Database']['dbname'];


Thanks for you help and support...

Internal server error is proble cuased by your server not allowing public 777 chmod. So chmod only subs.inc in the admin dir and you should be fine.

zethon 09-15-2006 07:34 PM

I've gone ahead and added code to the ewt_talkerbot.php file that will (1) update the forum counters, (2) put the bot into the "who's online" list and update the bot's user info (3) fix the double quoting

Underneath of
PHP Code:

define ("MY_VERSION""TALKERBOT v2.2 FOR VBULLETIN 3.5 and 3.6 by eXtremeTim"); 

add the following function:

PHP Code:

function update_bot_info()
{
    global 
$vbulletin;
    
    require_once(
'./global.php');
    require_once(
'./includes/functions.php');
    
$userinfo fetch_userinfo($vbulletin->options['ewt_talkerbot_botuid']);

    
// if the bot is already in the session table, update it, otherwise add it        
    
$vbulletin->db->query_write("UPDATE ".TABLE_PREFIX."session SET lastactivity = '"TIMENOW ."' WHERE (userid = '".$vbulletin->options['ewt_talkerbot_botuid']."')");
    if (
$vbulletin->db->affected_rows() == 0)
    {
        
$ip rand(25,160).".".rand(30,250).".".rand(3,250).".".rand(10,250);
        
$vbulletin->db->query_write("INSERT INTO ".TABLE_PREFIX."session (userid,lastactivity,host) VALUE ('".$vbulletin->options['ewt_talkerbot_botuid']."',".TIMENOW.",'$ip')");
    }

    
$userdata =& datamanager_init('User'$vbulletinERRTYPE_STANDARD);
    
$userdata->set_existing($userinfo);
    
$userdata->set('lastactivity'TIMENOW);
    
$userdata->set('lastvisit'TIMENOW 1);
    
$userdata->save();



Then towards the bottom there are two different if staments that look like:
PHP Code:

                    if (!$dataman->errors// should not occur
                    
{
                        
$dataman->save();
                                            } 

And make them both look like as follows:

PHP Code:

                    if (!$dataman->errors// should not occur
                    
{
                        
$dataman->save();
                        require_once(
'./includes/functions_databuild.php'); 
                        
build_forum_counters($foruminfo["forumid"]);
                        
update_bot_info();
                    } 

To fix the double-quoting, find two lines that look like:
PHP Code:

        if ($vbulletin->options['ewt_talkerbot_quotemsg'] == "1")
        { 


And right below it add the follow code:
PHP Code:

        $post['message'] = strip_quotes($post['message']); 


caper 09-15-2006 08:24 PM

Quote:

Originally Posted by eXtremeTim
Internal server error is proble cuased by your server not allowing public 777 chmod. So chmod only subs.inc in the admin dir and you should be fine.

Thank you that worked...


All times are GMT. The time now is 07:26 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
  • Page Generation 0.01750 seconds
  • Memory Usage 1,781KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_php_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete