Welcome to the JaguarPC Community
JaguarPC
Sales: (888) 338-5261
Support: (888)-551-3050
Page 1 of 2 12 LastLast
Results 1 to 15 of 25

This is a discussion on Most active member in the Open Discussion & Chit-chat forum
Who do you think is the most active member on this forum? Personally i think Vin is... but what you you think? ...

  1. #1
    Rob
    Rob is offline
    I am the one and only Rob's Avatar
    Join Date
    Nov 2005
    Location
    It varies
    Posts
    425

    Most active member

    Who do you think is the most active member on this forum?

    Personally i think Vin is... but what you you think?
    Rob



  2. #2
    Histerical, absolute
    Join Date
    Aug 2002
    Posts
    1,242
    I'd agree with you Rob, Vin never shuts up!
    All opinions are the result of being uninformed, unintelligent and uninterested!

  3. #3
    JPC Senior Member
    Join Date
    Jul 2003
    Posts
    65
    If you click on the member's list to check you go into a nonstop refresh cycle.

  4. #4
    Darth Admin (aka Jag) JPC-Greg's Avatar
    Join Date
    Sep 1998
    Posts
    5,201
    if somethings gonna be broke im glad its that at least. What reason does anyone really ever have to view a member list on a forum.
    Greg L. | Chief Executive Officer
    JaguarPC.com

    Helpful Links
    Knowledge Base | Network Status

    Need a Manager?
    (pm) | (email) David, Customer Service Manager
    (pm) | (email) Zach, Community Liason, Sales manager
    (pm) | (email) Masood, Chief Technical Officer
    (pm) | (email) Les, Chief Operations Officer

  5. #5
    the Windlord Gwaihir's Avatar
    Join Date
    Jun 2002
    Posts
    2,562
    I tried looking there a few days ago to find the names of some staff members (the JPC-XYZ ones). Kept getting page one of the long list, no matter what. I thought there was a "dream team" (or something) button once, but I couldn't find that either. Purpose of it all: to hand an alternate option to a forum member that was apparently having trouble with e-mail communication with sales.
    Regards,

    Wim Heemskerk
    ---
    Visit MeCCG.net - Cardgaming in J.R.R. Tolkien's Middle-earth
    And Gwaihir.net - The Middle-earth CCG store

  6. #6
    JPC Dream Team
    Join Date
    Feb 2006
    Location
    Houston, Texas
    Posts
    261

    re

    Just hit the browsers stop button

  7. #7
    all about nothing! Frank Broughton's Avatar
    Join Date
    Jan 2006
    Posts
    2,158
    Quote Originally Posted by JPC-Nick View Post
    Just hit the browsers stop button
    or perhaps - cough, ahem... fix the bug....

  8. #8
    Yeah, I know a LOT! Vin DSL's Avatar
    Join Date
    Mar 2003
    Location
    Arizona Uplands
    Posts
    10,775
    That page has a JavaScript error! That's what's doing it...

    Let me get a pot of coffee in me...
    DISCLAIMER Any resemblance between the views expressed above and those of the owners and operators of this system is purely coincidental. Any resemblance between these views and my own are non-deterministic. The existence of Vin DSL is questionable. The existence of views in the absence of anyone to hold them is problematic. The existence of the reader is left as an exercise in the second-order coefficient.

    No Guts, No Story! VinDSL © 2010

  9. #9
    Yeah, I know a LOT! Vin DSL's Avatar
    Join Date
    Mar 2003
    Location
    Arizona Uplands
    Posts
    10,775
    Hrm...

    Discovered a bug in the embedded CSS code at the top of:

    http://www.jaguarpc.com/forums/memberlist.php

    Line: 302

    .nav
    {
    color: #ffffff;
    text-align: center;
    padding: 0px 22px 0px 2px;
    font-size: 14px;
    }
    left;
    height: 29px;
    padding: 10px 0px 0px 0px;
    text-align: center;

    }
    .nav a:link, .nav a:visited, .nav a:hover, .nav a:active
    {
    color: #ffffff;
    padding: 0px 22px 0px 22px;
    font-size: 14px;
    }
    ...but I don't think that's doing it.
    DISCLAIMER Any resemblance between the views expressed above and those of the owners and operators of this system is purely coincidental. Any resemblance between these views and my own are non-deterministic. The existence of Vin DSL is questionable. The existence of views in the absence of anyone to hold them is problematic. The existence of the reader is left as an exercise in the second-order coefficient.

    No Guts, No Story! VinDSL © 2010

  10. #10
    Yeah, I know a LOT! Vin DSL's Avatar
    Join Date
    Mar 2003
    Location
    Arizona Uplands
    Posts
    10,775
    I don't have a lot of time to play around this morning, but indications are:

    http://www.jaguarpc.com/livehelp/include/javascript.php

    ...is causing the problem.

    Hrm...

    I wonder why it's only looping that one page?!?!?!
    DISCLAIMER Any resemblance between the views expressed above and those of the owners and operators of this system is purely coincidental. Any resemblance between these views and my own are non-deterministic. The existence of Vin DSL is questionable. The existence of views in the absence of anyone to hold them is problematic. The existence of the reader is left as an exercise in the second-order coefficient.

    No Guts, No Story! VinDSL © 2010

  11. #11
    Yeah, I know a LOT! Vin DSL's Avatar
    Join Date
    Mar 2003
    Location
    Arizona Uplands
    Posts
    10,775
    I *think* this is the function that's causing the prob...

    PHP Code:
    function checkXMLHTTP() {
        
    obj null;
        if (
    window.XMLHttpRequest) {
            
    obj = new XMLHttpRequest();
        }
        else if (
    window.ActiveXObject) {
            
    obj = new ActiveXObject("Microsoft.XMLHTTP")
            if (!
    obj) {
                try {
                    
    obj = new ActiveXObject("Msxml2.XMLHTTP");
                } catch(
    e) {
                    try {
                        
    obj = new ActiveXObject("Microsoft.XMLHTTP");
                    } catch(
    e) {
                        
    obj null;
                    }
                }
            }
        }
        return 
    obj;
    }

    var 
    resetTracking 0
    ...but that's just an educated guess...
    DISCLAIMER Any resemblance between the views expressed above and those of the owners and operators of this system is purely coincidental. Any resemblance between these views and my own are non-deterministic. The existence of Vin DSL is questionable. The existence of views in the absence of anyone to hold them is problematic. The existence of the reader is left as an exercise in the second-order coefficient.

    No Guts, No Story! VinDSL © 2010

  12. #12
    Yeah, I know a LOT! Vin DSL's Avatar
    Join Date
    Mar 2003
    Location
    Arizona Uplands
    Posts
    10,775
    Um... Wait a minute...

    What do we have here?

    http://www.jaguarpc.com/forums/clientscript/vbulletin_menu.js

    PHP Code:
    /**
    * Initialize the control object
    */
    vB_Popup_Menu.prototype.init_control = function(noimage)
    {
        
    this.controlobj fetch_object(this.controlkey);
        
    this.controlobj.state false;

        if (
    this.controlobj.firstChild && (this.controlobj.firstChild.tagName == 'TEXTAREA' || this.controlobj.firstChild.tagName == 'INPUT'))
        {
            
    // do nothing
        
    }
        else
        {
            if (!
    noimage && !(is_mac && is_ie))
            {
                var 
    space document.createTextNode(' ');
                
    this.controlobj.appendChild(space);

                var 
    img document.createElement('img');
                
    img.src IMGDIR_MISC '/menu_open.gif';
                
    img.border 0;
                
    img.title '';
                
    img.alt '';
                
    this.controlobj.appendChild(img);
            }

            
    this.controlobj.unselectable true;
            if (!
    noimage)
            {
                
    this.controlobj.style.cursor pointer_cursor;
            }
            
    this.controlobj.onclick vB_Popup_Events.prototype.controlobj_onclick;
            
    this.controlobj.onmouseover vB_Popup_Events.prototype.controlobj_onmouseover;
        }
    }; 
    Hrm...

    Check out the 'this.controlobj.firstChild.tagName' properties!

    Interesting!
    Last edited by Vin DSL; 09-07-2007 at 12:17 PM.
    DISCLAIMER Any resemblance between the views expressed above and those of the owners and operators of this system is purely coincidental. Any resemblance between these views and my own are non-deterministic. The existence of Vin DSL is questionable. The existence of views in the absence of anyone to hold them is problematic. The existence of the reader is left as an exercise in the second-order coefficient.

    No Guts, No Story! VinDSL © 2010

  13. #13
    Darth Admin (aka Jag) JPC-Greg's Avatar
    Join Date
    Sep 1998
    Posts
    5,201
    I dunno, what do you have there?
    Greg L. | Chief Executive Officer
    JaguarPC.com

    Helpful Links
    Knowledge Base | Network Status

    Need a Manager?
    (pm) | (email) David, Customer Service Manager
    (pm) | (email) Zach, Community Liason, Sales manager
    (pm) | (email) Masood, Chief Technical Officer
    (pm) | (email) Les, Chief Operations Officer

  14. #14
    Yeah, I know a LOT! Vin DSL's Avatar
    Join Date
    Mar 2003
    Location
    Arizona Uplands
    Posts
    10,775
    Quote Originally Posted by JPC-Greg View Post
    I dunno, what do you have there?
    I dunno either...

    This is where I need to put some thought to it!

    Hrm...

    The checks work on every page except the 'Members List'...

    Let me think about this for awhile...
    DISCLAIMER Any resemblance between the views expressed above and those of the owners and operators of this system is purely coincidental. Any resemblance between these views and my own are non-deterministic. The existence of Vin DSL is questionable. The existence of views in the absence of anyone to hold them is problematic. The existence of the reader is left as an exercise in the second-order coefficient.

    No Guts, No Story! VinDSL © 2010

  15. #15
    Old Hillbilly Connie's Avatar
    Join Date
    Sep 2001
    Location
    Hills of Missouri
    Posts
    2,646
    Quote Originally Posted by Rob View Post
    Who do you think is the most active member on this forum?

    Personally i think Vin is... but what you you think?
    Keep in mind that Vin talks to himself a lot in post.

    Personally I would say Matt or Jason, then Vin, unless you want to only consider post count.

    Forum Moderators - Jag Staff

    Spam Whackers Blog - Dedicated to fighting Spam and providing General SEO Tips
    Organize your Kitchen or purchase Kitchen Accessories at Condells
    Ihelpyou Forum - Dedicated to "Best Practices" SEO

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •