Sponsored Content
Contact Us UNIX Forum "Hall of Fame" - Our Developers Area Gollum Debug and Development and Botmaster Opportunity Post 65203 by Neo on Thursday 3rd of March 2005 01:02:46 PM
Old 03-03-2005
Gollum Debug and Development and Botmaster Opportunity

Project: Update "Program E" PHP/MySQL Application

Platform: Linux 2.4.20, Apache 1.3.39, PHP 4.3.10, MySQL 3.23.22-beta

References:

(1) “Program E” http://www.rydell.com/programe/

(2) ALICE/AIML http://www.alicebot.org/aiml.html

(3) TalkerBot 2.0.2 http://www.vbhacks.us/forum/showthr...18&page=1&pp=10

(4) UNIX.COM https://www.unix.com/chat-with-ibot-our-rss-robot-girl/

(5) vBulletin http://www.vbulletin.com

Project Summary:

The UNIX forums are a free, non commercial site for people to share information related to UNIX and Linux. We recently installed a PHP version of the ALICE chat bot in the UNIX forums. The bot is named Gollum. There are some small errors in the current version of “Program E” in the httpd log file. Here are the examples of the errors:

[error] PHP Notice: Undefined index: children in ./forums/alice/src/respond.php on line 186
[error] PHP Notice: Undefined index: attributes in ./forums/alice/src/util.php on line 471
[error] PHP Notice: Undefined index: value in ./forums/alice/src/util.php on line 47

There are a few other errors like the examples above.

We need someone to debug and fix these errors.

Potential Follow-On Development Work:

We are interested in refining the capabilities of this chat bot, based on advances in the AIML specification, perhaps creating a new development fork of “Program E” which does not seem to be actively supported at the moment.

Preferences:

We prefer you debug the configuration on your own platform and provide us files to upload on the production server.

Summary :

I estimate than an experienced PHP programmer, with the environment set up and in place, could debug and correct in a couple of hours. Our goal is long range development and this is the first opportunity to see how we may build a relationship that is good for the UNIX forums and advances the capabilities of our forum bot, Gollum.

Please post any questions to the Contact Us area (this thread) of the UNIX Forums:

https://www.unix.com/unix-forum-hall-of-fame-our-developers-area/17286-gollum-debug-development-botmaster-opportunity-post65203.html#post65203

Thank You,

Neo
 

2 More Discussions You Might Find Interesting

1. Solaris

Job Opportunity

Diane Rafferty Read the rules....thanks. (editied by RTM - removed post info and closed thread) (1 Reply)
Discussion started by: lcr12683
1 Replies

2. Advertise with Us

UNIX Systems Administrator Opportunity

Optiver is a worldwide market maker and derivatives trading firm with offices strategically located in Chicago, Amsterdam and Sydney. Attracting very ambitious, talented and results-oriented individuals to become members of a highly selective trading and support group is a primary contributor to... (0 Replies)
Discussion started by: Barb S.
0 Replies
MYSQL_GET_PROTO_INFO(3) 						 1						   MYSQL_GET_PROTO_INFO(3)

mysql_get_proto_info - Get MySQL protocol info

SYNOPSIS
Warning This extension is deprecated as of PHP 5.5.0, and will be removed in the future. Instead, the MySQLi or PDO_MySQL extension should be used. See also MySQL: choosing an API guide and related FAQ for more information. Alternatives to this function include: omysqli_get_proto_info(3) int mysql_get_proto_info ([resource $link_identifier = NULL]) DESCRIPTION
Retrieves the MySQL protocol. o $ link_identifier -The MySQL connection. If the link identifier is not specified, the last link opened by mysql_connect(3) is assumed. If no such link is found, it will try to create one as if mysql_connect(3) was called with no arguments. If no connection is found or established, an E_WARNING level error is generated. Returns the MySQL protocol on success or FALSE on failure. Example #1 mysql_get_proto_info(3) example <?php $link = mysql_connect('localhost', 'mysql_user', 'mysql_password'); if (!$link) { die('Could not connect: ' . mysql_error()); } printf("MySQL protocol version: %s ", mysql_get_proto_info()); ?> The above example will output something similar to: MySQL protocol version: 10 mysql_get_client_info(3), mysql_get_host_info(3), mysql_get_server_info(3). PHP Documentation Group MYSQL_GET_PROTO_INFO(3)
All times are GMT -4. The time now is 11:43 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy