PHP121 Instant Messenger Integration »  Show posts from    to     

Icy Phoenix


Old Customizations - PHP121 Instant Messenger Integration



Chaotic [ Sat 29 Mar, 2008 01:42 ]
Post subject: Re: PHP121 Instant Messenger Integration
JHOSMAN wrote: [View Post]
I have two problems SQL

Code: [Hide]
  1. Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /home/kokforos/public_html/foro/php121/php121im.php on line 625 


Code: [Hide]
  1. Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /home/kokforos/public_html/foro/php121/php121im.php on line 1399 


scr92f7890ob9.th



I'm 99.9% sure that not all the SQL entries were made. Go back and enter them again and I bet it'll work.

Good luck JHOSMAN!


xmenfile [ Thu 10 Apr, 2008 10:36 ]
Post subject: Re: PHP121 Instant Messenger Integration
Joshman, do you have any luck? i tried over and over MySQL, but same result.


xmenfile [ Sat 24 May, 2008 17:27 ]
Post subject: Re: PHP121 Instant Messenger Integration
Chaotic wrote: [View Post]
JHOSMAN wrote: [View Post]
I have two problems SQL

Code: [Hide]
  1. Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /home/kokforos/public_html/foro/php121/php121im.php on line 625 


Code: [Hide]
  1. Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /home/kokforos/public_html/foro/php121/php121im.php on line 1399 


scr92f7890ob9.th



I'm 99.9% sure that not all the SQL entries were made. Go back and enter them again and I bet it'll work.

Good luck JHOSMAN!


no, it's not sql, 'cause i have it work perfectly on other host and when i moved to different host, then getting this error.


postanime [ Sun 01 Jun, 2008 04:29 ]
Post subject: Re: PHP121 Instant Messenger Integration
This may sound weird or even stupid :P, but, is this software free or it has to be buyed?. Because i cant seem to find it free anywhere.

^^


xmenfile [ Sun 01 Jun, 2008 08:16 ]
Post subject: Re: PHP121 Instant Messenger Integration
it used to be free, but now they are charging it.


Chaotic [ Mon 02 Jun, 2008 00:49 ]
Post subject: Re: PHP121 Instant Messenger Integration
postanime wrote: [View Post]
This may sound weird or even stupid :P, but, is this software free or it has to be buyed?. Because i cant seem to find it free anywhere.

^^


I don't see the free link anywhere either. I donated $15 a few years back for this product and it seems to give me access to all future upgrades/versions.

Not seeing the free product probably means they are about to release a new version. When they release a new version, the previous version is released for free.


postanime [ Wed 11 Jun, 2008 01:08 ]
Post subject: Re: PHP121 Instant Messenger Integration
Ok i manage to get php121 (I made the spanish translation :D), so now i have installed and follow every intruction in this topic, but i get almost the same errors like the two users before me, the sql problems.

I tried and tried editing some file to see if i wasnt missing something but i could not find it. So i was wondering, is there anything more to do besides what you say in this post? Because for a fresh installation of php121, the folder contains several files that seem like SQL Queries that i dont see in here.

Another question, someone have succesfully installed this application?.

Thank you for your time

PD: The SQL Querie you mention, i run them twice so i think thats not the problem


postanime [ Wed 11 Jun, 2008 20:37 ]
Post subject: Re: PHP121 Instant Messenger Integration
Hi again, i managed to keep this thing running and i know why are there so many sql errors. Its because in the first Querie in this topic, there are missing some tables. I put you the corrected querie below.

Code: [Hide] [Select]
ALTER TABLE `ip_users` ADD `php121_user_chatting` INT( 11 ) DEFAULT '0' NOT NULL ,
ADD `php121_smilies` TINYINT( 1 ) DEFAULT '1' NOT NULL ,
ADD `php121_level` TINYINT( 1 ) DEFAULT '1' NOT NULL ,
ADD `php121_showrequest` TINYINT( 1 ) DEFAULT '1' NOT NULL ,
ADD `php121_beep_newmsg` TINYINT( 1 ) DEFAULT '1' NOT NULL ,
ADD `php121_focus_newmsg` TINYINT( 1 ) DEFAULT '1' NOT NULL ,
ADD `php121_auto_email_transcript` TINYINT( 1 ) DEFAULT '0' NOT NULL ,
ADD `php121_banned` TINYINT( 1 ) DEFAULT '0' NOT NULL ,
ADD `php121_timezone` TINYINT( 3 ) DEFAULT '0' NOT NULL ,
ADD `php121_timestamp` TINYINT( 1 ) DEFAULT '1' NOT NULL ,
ADD `php121_language` VARCHAR( 30 ) DEFAULT 'English' NOT NULL ,
ADD `php121_cl_update_key` int(11) NOT NULL default '0',
ADD `imbl_appear_offline` int(1) NOT NULL default '0',
ADD `imbl_away_message` varchar(255) NOT NULL default '',
ADD `imbl_usertheme` varchar(64) NOT NULL default '',
ADD `imbl_profileshowsbuddies` int(1) NOT NULL default '1',
ADD `imbl_general_info` text NOT NULL,
ADD `imbl_profile_timestamp` varchar(255) NOT NULL default '',
ADD `imbl_profiletheme` varchar(64) NOT NULL default '',
ADD `imbl_profile_gender` varchar(35) NOT NULL default '',
ADD `imbl_profile_age` int(2) NOT NULL default '0',
ADD `imbl_profile_location` varchar(35) NOT NULL default '',
ADD `imbl_profile_status` varchar(35) NOT NULL default '',
ADD `imbl_profile_orientation` varchar(35) NOT NULL default '',
ADD `imbl_profile_occupation` varchar(35) NOT NULL default '',
ADD `imbl_profile_avataruploaded` int(1) NOT NULL default '0',
ADD `imbl_profile_avatarhide` int(1) NOT NULL default '0',
ADD `php121_tabs_timestamp` int(11) NOT NULL default '0',
ADD `php121_tabs_update` int(1) NOT NULL default '0';

CREATE TABLE `php121_blocks` (
`b_id` int(10) NOT NULL auto_increment,
`b_user` int(10) NOT NULL default '0',
`b_block` int(10) NOT NULL default '0',
PRIMARY KEY (`b_id`)
) TYPE=MyISAM ;

CREATE TABLE `php121_config` (
`config_name` varchar(255) NOT NULL default '',
`config_value` varchar(255) NOT NULL default '',
PRIMARY KEY (`config_name`)
) TYPE=MyISAM;

INSERT INTO `php121_config` VALUES ('server_timezone', '0');
INSERT INTO `php121_config` VALUES ('default_language', 'English');
INSERT INTO `php121_config` VALUES ('auto_email_transcript', '0');
INSERT INTO `php121_config` VALUES ('user_can_create_account', '1');
INSERT INTO `php121_config` VALUES ('user_can_delete_account', '1');

CREATE TABLE `php121_requests` (
`r_id` int(11) NOT NULL auto_increment,
`roomid` int(11) default NULL,
`r_to` int(11) NOT NULL default '0',
`r_from` int(11) NOT NULL default '0',
`r_time` int(11) NOT NULL default '0',
`r_result` tinyint(1) NOT NULL default '0',
`r_update_time` int(11) NOT NULL default '0',
`r_type` int(1) NOT NULL default '0',
PRIMARY KEY (`r_id`)
) TYPE=MyISAM ;

CREATE TABLE `php121_control` (
`id` int(1) NOT NULL default '1',
`CL_LastModified` int(11) NOT NULL default '0',
`CL_UpdateKey` int(11) NOT NULL default '0',
PRIMARY KEY (`id`)
) TYPE=MyISAM;


INSERT INTO `php121_control` VALUES (1, 1, 1);

INSERT INTO `php121_control` VALUES (2, 1, 1);

CREATE TABLE `php121_messages` (
`msgid` int(11) NOT NULL auto_increment,
`roomid` int(11) NOT NULL default '0',
`username` varchar(25) NOT NULL default '',
`timestamp` int(11) NOT NULL default '0',
`servernotice` int(1) NOT NULL default '0',
`message` longtext NOT NULL,
PRIMARY KEY (`msgid`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;


CREATE TABLE `php121_rooms` (
`roomid` int(11) NOT NULL default '0',
`uname` varchar(25) NOT NULL default '',
`joined` int(11) NOT NULL default '0',
`lastping` int(11) NOT NULL default '0',
`timedout` int(1) NOT NULL default '0',
PRIMARY KEY (`roomid`,`uname`)
) TYPE=MyISAM;


CREATE TABLE `php121_smilies` (
`id` smallint(5) NOT NULL auto_increment,
`code` varchar(50) NOT NULL default '',
`filename` varchar(100) NOT NULL default '',
`description` varchar(75) NOT NULL default '',
`pack` varchar(50) NOT NULL default '',
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=44 ;

INSERT INTO `php121_smilies` VALUES (1, ':D', 'icon_biggrin.gif', 'Very Happy', 'phpbb');
INSERT INTO `php121_smilies` VALUES (2, ':)', 'icon_smile.gif', 'Smile', 'phpbb');
INSERT INTO `php121_smilies` VALUES (3, ':smile:', 'icon_smile.gif', 'Smile', 'phpbb');
INSERT INTO `php121_smilies` VALUES (4, ':(', 'icon_sad.gif', 'Sad', 'phpbb');
INSERT INTO `php121_smilies` VALUES (5, ':-(', 'icon_sad.gif', 'Sad', 'phpbb');
INSERT INTO `php121_smilies` VALUES (6, ':sad:', 'icon_sad.gif', 'Sad', 'phpbb');
INSERT INTO `php121_smilies` VALUES (7, ':o', 'icon_surprised.gif', 'Surprised', 'phpbb');
INSERT INTO `php121_smilies` VALUES (8, ':-o', 'icon_surprised.gif', 'Surprised', 'phpbb');
INSERT INTO `php121_smilies` VALUES (9, ':eek:', 'icon_surprised.gif', 'Surprised', 'phpbb');
INSERT INTO `php121_smilies` VALUES (10, '8O', 'icon_eek.gif', 'Shocked', 'phpbb');
INSERT INTO `php121_smilies` VALUES (11, '8-O', 'icon_eek.gif', 'Shocked', 'phpbb');
INSERT INTO `php121_smilies` VALUES (12, ':shock:', 'icon_eek.gif', 'Shocked', 'phpbb');
INSERT INTO `php121_smilies` VALUES (13, ':?', 'icon_confused.gif', 'Confused', 'phpbb');
INSERT INTO `php121_smilies` VALUES (14, ':-?', 'icon_confused.gif', 'Confused', 'phpbb');
INSERT INTO `php121_smilies` VALUES (15, ':???:', 'icon_confused.gif', 'Confused', 'phpbb');
INSERT INTO `php121_smilies` VALUES (16, '8)', 'icon_cool.gif', 'Cool', 'phpbb');
INSERT INTO `php121_smilies` VALUES (17, '8-)', 'icon_cool.gif', 'Cool', 'phpbb');
INSERT INTO `php121_smilies` VALUES (18, ':cool:', 'icon_cool.gif', 'Cool', 'phpbb');
INSERT INTO `php121_smilies` VALUES (19, ':lol:', 'icon_lol.gif', 'Laughing', 'phpbb');
INSERT INTO `php121_smilies` VALUES (20, ':x', 'icon_mad.gif', 'Mad', 'phpbb');
INSERT INTO `php121_smilies` VALUES (21, ':-x', 'icon_mad.gif', 'Mad', 'phpbb');
INSERT INTO `php121_smilies` VALUES (22, ':mad:', 'icon_mad.gif', 'Mad', 'phpbb');
INSERT INTO `php121_smilies` VALUES (23, ':P', 'icon_razz.gif', 'Razz', 'phpbb');
INSERT INTO `php121_smilies` VALUES (24, ':-P', 'icon_razz.gif', 'Razz', 'phpbb');
INSERT INTO `php121_smilies` VALUES (25, ':razz:', 'icon_razz.gif', 'Razz', 'phpbb');
INSERT INTO `php121_smilies` VALUES (26, ':oops:', 'icon_redface.gif', 'Embarassed', 'phpbb');
INSERT INTO `php121_smilies` VALUES (27, ':cry:', 'icon_cry.gif', 'Crying or Very sad', 'phpbb');
INSERT INTO `php121_smilies` VALUES (28, ':evil:', 'icon_evil.gif', 'Evil or Very Mad', 'phpbb');
INSERT INTO `php121_smilies` VALUES (29, ':twisted:', 'icon_twisted.gif', 'Twisted Evil', 'phpbb');
INSERT INTO `php121_smilies` VALUES (30, ':roll:', 'icon_rolleyes.gif', 'Rolling Eyes', 'phpbb');
INSERT INTO `php121_smilies` VALUES (31, ':wink:', 'icon_wink.gif', 'Wink', 'phpbb');
INSERT INTO `php121_smilies` VALUES (32, ';)', 'icon_wink.gif', 'Wink', 'phpbb');
INSERT INTO `php121_smilies` VALUES (33, ':!:', 'icon_exclaim.gif', 'Exclamation', 'phpbb');
INSERT INTO `php121_smilies` VALUES (34, ':?:', 'icon_question.gif', 'Question', 'phpbb');
INSERT INTO `php121_smilies` VALUES (35, ':idea:', 'icon_idea.gif', 'Idea', 'phpbb');
INSERT INTO `php121_smilies` VALUES (36, ':arrow:', 'icon_arrow.gif', 'Arrow', 'phpbb');
INSERT INTO `php121_smilies` VALUES (37, ':|', 'icon_neutral.gif', 'Neutral', 'phpbb');
INSERT INTO `php121_smilies` VALUES (38, ':-|', 'icon_neutral.gif', 'Neutral', 'phpbb');
INSERT INTO `php121_smilies` VALUES (39, ':neutral:', 'icon_neutral.gif', 'Neutral', 'phpbb');
INSERT INTO `php121_smilies` VALUES (40, ':mrgreen:', 'icon_mrgreen.gif', 'Mr. Green', 'phpbb');
INSERT INTO `php121_smilies` VALUES (41, ':^_^:', 'aiwebs_004.gif', 'Smile (Japanese)', 'phpbb');
INSERT INTO `php121_smilies` VALUES (42, ':wave:', 'wavey.gif', '', 'phpbb');
INSERT INTO `php121_smilies` VALUES (43, ':samurai:', 'samurai.gif', '', 'phpbb');


Remember that IP_ it the prefix of your icyphoenix table, be sure to change it if yours is different.

The other querie its i think the same, but i leave it to you just in case.

Code: [Hide] [Select]
-- Table structure for table `imbuddylist`
--

CREATE TABLE `imbuddylist` (
`id` int(20) NOT NULL auto_increment,
`userid` int(32) NOT NULL default '0',
`buddyid` int(32) NOT NULL default '0',
`buddygroup` int(32) NOT NULL default '0',
`buddycomment` varchar(255) NOT NULL default '',
PRIMARY KEY (`id`)
) TYPE=MyISAM;

-- --------------------------------------------------------

--
-- Table structure for table `imbuddylist_config`
--

CREATE TABLE `imbuddylist_config` (
`config_name` varchar(255) NOT NULL default '',
`defaulttheme` varchar(255) NOT NULL default '',
`group_allonline_opened` int(1) NOT NULL default '1',
`group_onlinebuddies_opened` int(1) NOT NULL default '1',
`group_offlinebuddies_opened` int(1) NOT NULL default '0',
`profile_enabled` int(1) NOT NULL default '1',
`buddylist_enabled` int(1) NOT NULL default '1',
`awaymsg_enabled` int(1) NOT NULL default '1',
`showonline_enabled` int(1) NOT NULL default '1',
`usersearch_enabled` int(1) NOT NULL default '1',
`profilecomments_enabled` int(1) NOT NULL default '1',
`profileavatars_enabled` int(1) NOT NULL default '1',
`buddycomments_enabled` int(1) NOT NULL default '1',
`offlinemessages_enabled` int(1) NOT NULL default '1',
`debugmode_enabled` int(1) NOT NULL default '0',
`adminscontrolusersettings` int(1) NOT NULL default '0',
`chatlogsaving_enabled` int(1) NOT NULL default '1',
`staffsupportsystem_enabled` int(1) NOT NULL default '1',
`usersautoacceptchatrequests` int(1) NOT NULL default '0',
PRIMARY KEY (`config_name`)
) TYPE=MyISAM;
INSERT INTO `imbuddylist_config` VALUES ('imbuddylist', '', 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0);
-- --------------------------------------------------------

--
-- Table structure for table `imbuddylist_groups`
--

CREATE TABLE `imbuddylist_groups` (
`id` int(20) NOT NULL auto_increment,
`userid` int(32) NOT NULL default '0',
`group` varchar(21) NOT NULL default '',
`opened` int(1) NOT NULL default '1',
PRIMARY KEY (`id`)
) TYPE=MyISAM;

-- --------------------------------------------------------

--
-- Table structure for table `imbuddylist_profilecomments`
--

CREATE TABLE `imbuddylist_profilecomments` (
`comment_id` int(20) NOT NULL auto_increment,
`profile_id` int(20) NOT NULL default '0',
`poster_id` int(20) NOT NULL default '0',
`timestamp` int(11) NOT NULL default '0',
PRIMARY KEY (`comment_id`),
KEY `profile_id` (`profile_id`),
KEY `poster_id` (`poster_id`),
KEY `timestamp` (`timestamp`)
) TYPE=MyISAM;

-- --------------------------------------------------------

--
-- Table structure for table `imbuddylist_profilecomments_text`
--

CREATE TABLE `imbuddylist_profilecomments_text` (
`comment_id` int(20) NOT NULL auto_increment,
`comment_text` text,
PRIMARY KEY (`comment_id`)
) TYPE=MyISAM;

-- --------------------------------------------------------

--
-- Table structure for table `imbuddylist_staffbuddies`
--

CREATE TABLE `imbuddylist_staffbuddies` (
`id` int(20) NOT NULL auto_increment,
`userid` varchar(45) NOT NULL default '1',
`buddyid` varchar(45) NOT NULL default '',
`buddygroup` varchar(45) NOT NULL default '',
`displayname` varchar(40) NOT NULL default '',
PRIMARY KEY (`id`)
) TYPE=MyISAM;

-- --------------------------------------------------------

--
-- Table structure for table `imbuddylist_staffgroups`
--

CREATE TABLE `imbuddylist_staffgroups` (
`id` int(20) NOT NULL auto_increment,
`userid` varchar(45) NOT NULL default '1',
`group` varchar(45) NOT NULL default '',
`opened` int(1) NOT NULL default '1',
PRIMARY KEY (`id`)
) TYPE=MyISAM;

-- --------------------------------------------------------

--
-- Table structure for table `php121_offlinemessages`
--

CREATE TABLE `php121_offlinemessages` (
`offlineim_id` INT(20) NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`receiver_id` INT(20) NOT NULL ,
`sender_id` INT(20) NOT NULL ,
`timestamp` INT(11) NOT NULL ,
`subject` varchar(50) NOT NULL default '',
`unread` int(1) NOT NULL default '1',
INDEX ( `receiver_id` )
) TYPE = MYISAM ;

-- --------------------------------------------------------

--
-- Table structure for table `php121_offlinemessages_text`
--

CREATE TABLE `php121_offlinemessages_text` (
`offlineim_id` INT( 20 ) NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`offlineim_text` TEXT NULL
) TYPE = MYISAM ;



CREATE TABLE `php121_chatlogs` (
`id` int(99) NOT NULL auto_increment,
`room_id` int(99) NOT NULL default '0',
`timestamp` int(11) NOT NULL default '0',
`usernames` text NOT NULL,
`textlog` text NOT NULL,
PRIMARY KEY (`id`)
) TYPE=MyISAM ;


Bye


xmenfile [ Thu 12 Jun, 2008 00:44 ]
Post subject: Re: PHP121 Instant Messenger Integration
awesome Postanime. I'll try it


KasLimon [ Sat 14 Jun, 2008 09:59 ]
Post subject: Re: PHP121 Instant Messenger Integration
php121 doesn't seem to be free now...
I'll send them an email asking if I can keep this topic open, and if I can not, unfortunately I'll close it...

Thank you for your corrections postanime!

Greets!


Chaotic [ Sat 14 Jun, 2008 10:05 ]
Post subject: Re: PHP121 Instant Messenger Integration
Where are you downloading from on that page?

The first two downloads are for supporters only (Need username & password to download). The third download is a manual for those downloads. The fourth and fifth links are the README and CHANGES files.


KasLimon [ Sun 15 Jun, 2008 11:14 ]
Post subject: Re: PHP121 Instant Messenger Integration
I received a reply very quickly. I can keep this topic open, so I'll update first post with some information and postanime queries.
captura_2

Greets!


Mighty Gorgon [ Thu 26 Jun, 2008 16:06 ]
Post subject: Re: PHP121 Instant Messenger Integration
Thanks Kas for having asked.

And of course thanks for sharing...


argenta [ Fri 27 Jun, 2008 12:02 ]
Post subject: Re: PHP121 Instant Messenger Integration
Kas, thank you for your great job!
Your contribution is very much appreciated

Can you tell me where may I apply the following codechange for ca_aphrodite theme?

Code: [Hide] [Select]
Open templates/mg_themes/overall_include.tpl
Find
<!-- END switch_new_download -->

After, add
<script type="text/javascript">
<!--
var newwindow;
function poptastic(url)
{
newwindow=window.open(url,'name','height=500,width=240,left=20,top=20,toolbar=no, menubar=no,directories=no,location=no,scrollbars=yes,status=no,resizable=yes,fullscreen=no');

if (window.focus) {newwindow.focus()}
}
-->
</script>


KasLimon [ Sun 13 Jul, 2008 16:08 ]
Post subject: Re: PHP121 Instant Messenger Integration
Hi, I'm very sorry for the long time since my last visit, but I was in England for the end of the classes. After the trip I had to update my web completely, and I'm still updating my web.

argenta, this change should be done in overall_header.tpl in ca_aphrodite, I think. Just give it a try.

Greets!


Mighty Gorgon [ Wed 23 Jul, 2008 15:39 ]
Post subject: Re: PHP121 Instant Messenger Integration
No problem Kas... take your time... you will find us here when you are ready to work again!
KasLimon wrote: [View Post]
Hi, I'm very sorry for the long time since my last visit, but I was in England for the end of the classes. After the trip I had to update my web completely, and I'm still updating my web.


MaxTortora [ Thu 09 Oct, 2008 19:14 ]
Post subject: Re: PHP121 Instant Messenger Integration
Are you sure that

Code: [Hide] [Select]
//***PHP121***
$php121 = '';
if ( ($row['php121_user_chatting'] != 0) && ($row['php121_user_chatting'] != NULL )&& (time()-$row['php121_user_chatting']) < 90 )
{
$php121 = " <a href="#" onClick="window.open('php121/php121sendim.php?to=$row[user_id]','$row[user_id]','left=20, top=20,width=600,height=500,toolbar=0,resizeable=0');"><img src="php121/php121online.gif" height="11" width="11" border=0 ALT="Send instant message"></a>";
}
//***END PHP121***
$user_online_link = colorize_username($row['user_id']) . $php121;



is correct?

Because whithout this part of code I have php121 in my site but without the possibility of watch users on-line and off-line...

When I insert this part of code, index.php become white.

Somebody can help me?


Chaotic [ Thu 09 Oct, 2008 20:56 ]
Post subject: Re: PHP121 Instant Messenger Integration
MaxTortora wrote: [View Post]
Are you sure that

//***PHP121***
$php121 = '';
if ( ($row['php121_user_chatting'] != 0) && ($row['php121_user_chatting'] != NULL )&& (time()-$row['php121_user_chatting']) < 90 )
{
$php121 = " <a href="#" onClick="window.open('php121/php121sendim.php?to=$row[user_id]','$row[user_id]','left=20, top=20,width=600,height=500,toolbar=0,resizeable=0');"><img src="php121/php121online.gif" height="11" width="11" border=0 ALT="Send instant message"></a>";
}
//***END PHP121***
$user_online_link = colorize_username($row['user_id']) . $php121;


is correct?

Because whithout this part of code I have php121 in my site but without the possibility of watch users on-line and off-line...

When I insert this part of code, index.php become white.

Somebody can help me?


Please wrap code using the code wrapping BBCode.

Thanks

-- I've used and still use this modification on my website with the installation instructions in the first post. It works like a charm. Be sure you've edited all necessary files and uploaded each file correctly.


MaxTortora [ Thu 09 Oct, 2008 23:52 ]
Post subject: Re: PHP121 Instant Messenger Integration
Thank you very much for your answer, Chaotic.

I have forgotten to say that when I runned the first SQL, the answer was

#1060 - Duplicate column name 'php121_user_chatting'

What does it mean?
Do you think that this message cause my problems?

Thank you very much!


Chaotic [ Thu 09 Oct, 2008 23:54 ]
Post subject: Re: PHP121 Instant Messenger Integration
Very well could be the problem. You may want to remove that second repeating line and see if it works.


MaxTortora [ Fri 10 Oct, 2008 01:30 ]
Post subject: Re: PHP121 Instant Messenger Integration
Chaotic wrote: [View Post]
Very well could be the problem. You may want to remove that second repeating line and see if it works.


Sorry, I don't understand what I must do...


Chaotic [ Fri 10 Oct, 2008 02:15 ]
Post subject: Re: PHP121 Instant Messenger Integration
KasLimon wrote: [View Post]
What does this mod does?
It allows you to integrate php121 Instant Messenger system to your Icy Phoenix.
Then, what PHP121 Instant Messenger is?
Quote:
PHP121 is a free web based instant messenger - written entirely in PHP. This means that it will work in any browser on any operating system including Windows and Linux, anywhere!

If traditional messaging programs like MSN Messenger or Yahoo! Messenger are blocked at your school or workplace, PHP121 will still work.

PHP121 is ideal for community websites where a quick and easy way to chat is needed among its members. By changing one setting in the configuration file, PHP121 can be easily integrated into other systems such as PHPNuke and phpBB. More integrations will be available in the future.
[More info: php121.com]


Demo board: here

Installation instructions:
Spoiler: [ Show ]


Greets!


Try deleting all these tables from your forum database. Be very careful not to delete anything but the entries made when installing this mod.

Then use the above installation instructions to re-install the modification.


MaxTortora [ Fri 10 Oct, 2008 11:51 ]
Post subject: Re: PHP121 Instant Messenger Integration
I have applied the MOD in another my IP and the result is

Parse error: syntax error, unexpected '}' in /web/htdocs/www.noicuneesi.com/home/includes/users_online_block.php on line 113



Chaotic [ Fri 10 Oct, 2008 12:18 ]
Post subject: Re: PHP121 Instant Messenger Integration
I'm assuming you made a donation on the PHP121 site to gain access to the latest version of PHP121, right?

I'm working on installing this modification on a test board and will report back if I find any errors. (I'll edit this post after I install.)


MaxTortora [ Fri 10 Oct, 2008 13:48 ]
Post subject: Re: PHP121 Instant Messenger Integration
Chaotic wrote: [View Post]
I'm assuming you made a donation on the PHP121 site to gain access to the latest version of PHP121, right?


Yes, yesterday I made a donation of $ 19,00


Chaotic wrote: 

I'm working on installing this modification on a test board and will report back if I find any errors. (I'll edit this post after I install.)


But the modification you have applied on your site is not the latest version? It's not the same of that I have downloaded?

How long time do you think, I should have this modification on my site?


Chaotic [ Fri 10 Oct, 2008 14:03 ]
Post subject: Re: PHP121 Instant Messenger Integration
I'm using version 3.1.2.

You may want to start over by removing all the additions in your database from this modification and try re-installing following the explicit installation instructions in the first post of this thread. I installed this on my test board with zero errors and it worked fine.


MaxTortora [ Fri 10 Oct, 2008 14:22 ]
Post subject: Re: PHP121 Instant Messenger Integration
If I make you a donation, you can apply modification on my site?

Is it correct that all the index.html files in the attached package are 0 kb?


Chaotic [ Fri 10 Oct, 2008 23:52 ]
Post subject: Re: PHP121 Instant Messenger Integration
I'm sorry, but I'm not installing anything on anyone's website. I will try my best to help you get your problem solved, but if I can't, we've got many other expert users of Icy Phoenix that may be able to help!

It won't be long buddy so just be patient.




Powered by Icy Phoenix