Menu

Two bug fixes for the 0.14.2 release

2001-03-20
2012-09-14
  • Loïc Chapeaux

    Loïc Chapeaux - 2001-03-20

    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

     
    • Stephen Duffy

      Stephen Duffy - 2001-04-19

      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 ??

       
      • Loïc Chapeaux

        Loïc Chapeaux - 2001-04-19

        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

         
        • Anonymous

          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!

           
          • Loïc Chapeaux

            Loïc Chapeaux - 2001-04-26

            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

             

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.