Two bug have been fixed in the 0.14.2 release of phpMyChat. Please check the latest revision of the 'chat/lib/index.lib.php3' and 'chat/lib/database/pgsql.lib.php3' scripts at the CVS tree.
I'll try to create a mailing-list for notifications of CVS changes tonight.
Regards,
Loc (aka lolo) for the phpheaven-team
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
lolo,
I've just started using your excellent chatroom s/w but some people have been getting error messages with Micro$oft IE4 - "object doesn't support this propery or method".
has this error been fixed in the files you mention above ??
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Unfortunatly not! The bugs you are facing are known ones with IE4 but none of us uses this browser and then it's hard for us to fix it.
But maybe you or your friends may help us if you/they have some free minuts to work on the chat : we just need to know the error number, the error message, the file and the line that caused this bug.
Thanks in advance,
Loc (aka lolo) for the phpHeaven-team
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2001-04-25
I go to the site, type in my name & password. (I already registered) I go into the room and I have this error:
Line 58
char 3
Error: object doesn't support this property or method.
Please, fix it!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Well, it's a bit hard to fix your problem because you neither the script that cause it, nor the phpMyChat release and the browser you are using (0.14.2 and IE4 I presume)!
The error could be in the "loader.php3" script, but I'm not sure it is the case.
Try this please:
1) backup the original "loader.php3" so can restore it easilly latter;
2) near the end of this script you'll find these lines:
with (window.parent.frames['messages'].window)
{
if (typeof(scrollBy(0, 0)) != 'undefined')
{
scrollBy(0, 65000);
scrollBy(0, 65000);
}
else
{
scroll(0, 65000);
scroll(0, 65000);
};
}
Replace them by these ones:
with (window.parent.frames['messages'].window)
{
if (typeof(scrollBy) != 'undefined')
{
scrollBy(0, 65000);
scrollBy(0, 65000);
}
else if (typeof(scroll) != 'undefined')
{
scroll(0, 65000);
scroll(0, 65000);
};
}
And please tell us whether this fix is usefull or not. Thanks in advance,
Loc
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi!
Two bug have been fixed in the 0.14.2 release of phpMyChat. Please check the latest revision of the 'chat/lib/index.lib.php3' and 'chat/lib/database/pgsql.lib.php3' scripts at the CVS tree.
I'll try to create a mailing-list for notifications of CVS changes tonight.
Regards,
Loc (aka lolo) for the phpheaven-team
lolo,
I've just started using your excellent chatroom s/w but some people have been getting error messages with Micro$oft IE4 - "object doesn't support this propery or method".
has this error been fixed in the files you mention above ??
Hi Stephen!
Unfortunatly not! The bugs you are facing are known ones with IE4 but none of us uses this browser and then it's hard for us to fix it.
But maybe you or your friends may help us if you/they have some free minuts to work on the chat : we just need to know the error number, the error message, the file and the line that caused this bug.
Thanks in advance,
Loc (aka lolo) for the phpHeaven-team
I go to the site, type in my name & password. (I already registered) I go into the room and I have this error:
Line 58
char 3
Error: object doesn't support this property or method.
Please, fix it!
Hi pipolo!
Well, it's a bit hard to fix your problem because you neither the script that cause it, nor the phpMyChat release and the browser you are using (0.14.2 and IE4 I presume)!
The error could be in the "loader.php3" script, but I'm not sure it is the case.
Try this please:
1) backup the original "loader.php3" so can restore it easilly latter;
2) near the end of this script you'll find these lines:
with (window.parent.frames['messages'].window)
{
if (typeof(scrollBy(0, 0)) != 'undefined')
{
scrollBy(0, 65000);
scrollBy(0, 65000);
}
else
{
scroll(0, 65000);
scroll(0, 65000);
};
}
Replace them by these ones:
with (window.parent.frames['messages'].window)
{
if (typeof(scrollBy) != 'undefined')
{
scrollBy(0, 65000);
scrollBy(0, 65000);
}
else if (typeof(scroll) != 'undefined')
{
scroll(0, 65000);
scroll(0, 65000);
};
}
And please tell us whether this fix is usefull or not. Thanks in advance,
Loc