What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » General » Forum & Website » [Firefox] Skins Database Bug

[Firefox] Skins Database Bug
Author: Message:
Chris4
Elite Member
*****

Avatar

Posts: 4461
Reputation: 84
32 / Male / Flag
Joined: Dec 2004
O.P. [Firefox] Skins Database Bug
On the skins database, when searching, the error page is appearing like this:

[Image: skinsdbbug.png]

Example: http://www.msgpluslive.net/skins/search/?q=fjogdfjgfji

It only happens in Firefox (3.6), IE8 and Chrome work fine.

I tested in Firefox (Safe Mode) and the same happened, so it's not caused by any extensions.

Can anyone else confirm this?
Twitter: @ChrisLozeau
01-24-2010 02:32 AM
Profile PM Find Quote Report
blessedguy
Skinning Contest Winner
*****


Posts: 1762
Reputation: 25
31 / Male / Flag
Joined: Jan 2008
RE: [Firefox] Skins Database Bug
Exactly the same problem on Firefox 3.6 RC.
[Image: Empty.png]
01-24-2010 02:34 AM
Profile PM Web Find Quote Report
roflmao456
Skinning Contest Winner
****

Avatar

Posts: 955
Reputation: 24
29 / Male / Flag
Joined: Nov 2006
Status: Away
RE: [Firefox] Skins Database Bug
confirmed.
i searched random stuff on the scriptsdb and got something similar to your picture

Firefox 3.6

This post was edited on 01-24-2010 at 02:49 AM by roflmao456.
[quote]
Ultimatess6
: What a noob mod
01-24-2010 02:48 AM
Profile PM Web Find Quote Report
Menthix
forum admin
*******

Avatar

Posts: 5537
Reputation: 102
39 / Male / Flag
Joined: Mar 2002
RE: [Firefox] Skins Database Bug
Can anyone still on FF 3.5.x or earlier check if the error happens there too?
Finish the problem
Menthix.net | Contact Me
01-24-2010 02:55 AM
Profile E-Mail PM Web Find Quote Report
robert_dll
Full Member
***

Avatar

Posts: 393
Reputation: 8
– / Male / Flag
Joined: Aug 2008
RE: [Firefox] Skins Database Bug
Same here. Firefox 3.6 Final
01-24-2010 02:56 AM
Profile PM Web Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: [Firefox] Skins Database Bug
fine in firefox 3.5.7

[Image: attachment.php?pid=985928]

.jpg File Attachment: firefox.3.5.7.jpg (86.98 KB)
This file has been downloaded 316 time(s).

This post was edited on 01-24-2010 at 03:01 AM by matty.
01-24-2010 03:01 AM
Profile E-Mail PM Find Quote Report
Chris4
Elite Member
*****

Avatar

Posts: 4461
Reputation: 84
32 / Male / Flag
Joined: Dec 2004
O.P. RE: [Firefox] Skins Database Bug
Broken in 3.7 too.

http://browsershots.org/screenshots/2268cca6d98904018dfa3a2ee7ebf692/
Twitter: @ChrisLozeau
01-24-2010 03:24 AM
Profile PM Find Quote Report
Menthix
forum admin
*******

Avatar

Posts: 5537
Reputation: 102
39 / Male / Flag
Joined: Mar 2002
RE: [Firefox] Skins Database Bug
I blame it on FF's new tabs sorting method... it's even confusing the DownDB :o.

This post was edited on 01-24-2010 at 03:29 AM by Menthix.
Finish the problem
Menthix.net | Contact Me
01-24-2010 03:29 AM
Profile E-Mail PM Web Find Quote Report
Matti
Elite Member
*****

Avatar
Script Developer and Helper

Posts: 1646
Reputation: 39
31 / Male / Flag
Joined: Apr 2004
RE: [Firefox] Skins Database Bug
A bit of firebugging revealed that the problem is caused by the vertical center hack. Simply put: it doesn't work that way.

Here's a much better vertical center hack, using table styles for IE8/Firefox/Chrome/... and relative positioning for IE6/7. I took the liberty to make it a bit more standards-compliant, but I didn't touch the table for the error message so the default style doesn't need changing.
HTML code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml">
 
<head profile="http://gmpg.org/xfn/11">
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Messenger Skins &raquo; Search &raquo; KEYWORDS</title>
    <link href="/skins/skins/default/style.css" rel="stylesheet" type="text/css" />
    <meta http-equiv="refresh" content="3; url=/skins/browse/" />
    <style type="text/css">
 
    html, body {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
    }
 
    #outer {
        display: table;
        width: 100%;
        height: 100%;
        overflow: hidden;
        text-align: center;
    }
 
    #inner {
        display: table-cell;
        vertical-align: middle;
    }
 
    #message {
        width: 40%;
        margin: 0 auto;
        text-align: center;
    }
 
    </style>
 
    <!--[if lt IE 8]>
    <style type="text/css">
 
    #outer {
        position: relative;
    }
    #inner {
        position: absolute;
        top: 50%;
        left: 50%;
    }
    #message {
        position: relative;
        top: -50%;
        left: -50%;
        margin-top: -3.5em;
        width: 100%;
    }
 
    </style>
    <![endif]-->
</head>
 
<body>
    <div id="outer">
        <div id="inner">
            <table id="message" cellpadding="3" cellspacing="0" class="border">
                <tbody>
                    <tr class="sectionheader">
                        <th>Error</th>
                    </tr>
                    <tr>
                        <td>
                            <p>No results were found for "KEYWORDS". Please use the back button and try a different word.</p>
                            <p><a href="/skins/browse/">Click here if you are not redirected automatically.</a></p>
                        </td>
                    </tr>
                </tbody>
            </table>
        </div>
    </div>
</body>
 
</html>

Plus! Script Developer | Plus! Beta Tester | Creator of Countdown Live | Co-developer of Screenshot Sender 5

Found my post useful? Rate me!
01-24-2010 09:43 AM
Profile E-Mail PM Web Find Quote Report
Menthix
forum admin
*******

Avatar

Posts: 5537
Reputation: 102
39 / Male / Flag
Joined: Mar 2002
RE: [Firefox] Skins Database Bug
Matti, thanks for the help! This got buried under other things to do, but it's fixed now.

Also fixes the redirect messages after you voted on an item.

This post was edited on 02-06-2010 at 05:30 PM by Menthix.
Finish the problem
Menthix.net | Contact Me
02-06-2010 02:10 PM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On