Kiwi Airgunners Homepage
Forum Home Forum Home > Welcome to Beta 12.4 > Beta testing
  New Posts New Posts RSS Feed - Gpt testing resaults
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Gpt testing resaults

 Post Reply Post Reply
Author
Message
kruzaroad View Drop Down
Newbie
Newbie


Joined: 1 hour 29 minutes ago
Location: Hastings
Status: Offline
Points: 5
Post Options Post Options   Thanks (0) Thanks(0)   Quote kruzaroad Quote  Post ReplyReply Direct Link To This Post Topic: Gpt testing resaults
    Posted: 50 minutes ago at 9:55am
I checked the beta specifically.
At present, external testing is being blocked by the beta itself rather than by the testing services. Both:
and
end up at HTTPS from my external connection and return 502 Bad Gateway. �
 +1
So I wouldn't bother doing detailed browser performance testing yet. The first useful thing to tell whoever is building it is:
External access to beta.kiwiairgunners.co.nz is producing a 502 on HTTPS. Check the HTTP→HTTPS redirect, reverse proxy/web server and beta virtual-host configuration.
Once that's sorted, these are the ones I'd actually put Kiwi Airgunners through:
WebPageTest — first choice. It can test Core Web Vitals, Lighthouse and visual loading behaviour and has configurable browser/location testing. �
license.webpagetest.org
GTmetrix — useful second opinion. The current free account includes a small number of tests and gives Web Vitals, page size, request information and throttled-connection testing. �
gtmetrix.com
PageSpeed Insights — quick mobile/desktop baseline. Good for finding the obvious performance problems before spending time manually checking browsers. �
PageSpeed Insights
BrowserStack — save this until last. Its free trial currently gives 30 minutes of interactive cross-browser testing and 100 responsive screenshots. That's enough to deliberately hit iPhone Safari, Mac Safari, Firefox and Edge rather than wasting the allowance on Chrome/Android that you can test yourself. �
BrowserStack
One interesting point: the old/main Kiwi Airgunners site has historically had DNS/SSL problems reported by external monitors as well, so I'd keep the beta's DNS/SSL setup high on the checklist rather than assuming this 502 is just my connection. �
Webrate
Once that 502 disappears, give me a yell and I'll hit the beta again. At that point we can start looking at the actual site, not just whether the bloody door opens. 😁
Back to Top
kruzaroad View Drop Down
Newbie
Newbie


Joined: 1 hour 29 minutes ago
Location: Hastings
Status: Offline
Points: 5
Post Options Post Options   Thanks (0) Thanks(0)   Quote kruzaroad Quote  Post ReplyReply Direct Link To This Post Posted: 41 minutes ago at 10:04am
 Gpt on the logo:
 Yeah — that sounds like a responsive CSS/container-width problem, not the logo itself.
The clue is:
logo stretches correctly across the available width
text/content is about 75% width in Firefox desktop
on your phone it collapses to about ⅓ width
That usually means the text is sitting inside a parent container whose width is being calculated differently at different breakpoints. Things I'd suspect first are:
width: 33%, width: 75%, a Bootstrap-style column such as col-4 / col-9, a flex child that isn't allowed to grow, or a media query kicking in at phone/Firefox viewport widths.
Firefox can also expose responsive-layout problems that Chrome happens to tolerate differently, especially where percentage widths, floats or flex containers are involved. Mozilla has documented cases where media-query behaviour changes according to the browser's effective CSS viewport width/zoom. �
support.mozilla.org +1
A very common fix is something along these lines on the main text/content container:
width: 100%;
max-width: 100%;
box-sizing: border-box;
And if it's inside flex:
flex: 1 1 auto;
min-width: 0;
width: 100%;
The important bit is don't apply that blindly to the entire site. Whoever has access to the beta code should inspect the text area and trace its parent elements until they find the one producing that ⅓/¾ width.
Actually, your phone is useful here
Because yours is showing ⅓ width, that's a stronger diagnostic than the Firefox ¾ case. I'd ask the developer to check the CSS for a mobile rule around:
@media (max-width: ...)
and specifically look for a grid column being retained on mobile instead of becoming full-width.
Something like:
.content {
    width: 33.333%;
}
may be intended for a three-column desktop layout but isn't being overridden with:
@media (max-width: 768px) {
    .content {
        width: 100%;
    }
}
The fact that two different people/devices are seeing two different wrong widths makes me lean strongly toward breakpoint/grid CSS rather than a Firefox bug.
I still can't inspect the beta's actual HTML/CSS because unauthenticated external access gives me the 502. But a screenshot of the page on your phone showing the narrow text area would probably let me narrow down what layout structure is going wrong visually.
Back to Top
kruzaroad View Drop Down
Newbie
Newbie


Joined: 1 hour 29 minutes ago
Location: Hastings
Status: Offline
Points: 5
Post Options Post Options   Thanks (0) Thanks(0)   Quote kruzaroad Quote  Post ReplyReply Direct Link To This Post Posted: 33 minutes ago at 10:12am
 Uploaded my screen shot. Heres the analist:
Yep. That screenshot makes it much clearer.
The page itself is using the full phone viewport — we know that because the Kiwi Airgunners banner correctly fills virtually the entire width.
But everything immediately below it is constrained to roughly 265 px / 38–40% of your screen. Then some footer text is centred relative to that same narrow region rather than the whole screen.
So I wouldn't blame font rendering or Firefox. The content wrapper below the header has a fixed or constrained width.
The particularly useful clue is that several completely different components all terminate at almost exactly the same x-position:
Forum Home/New Posts navigation
Welcome to Beta box
Latest Forum Posts box
That means we're probably looking at one shared parent/container, rather than three individual CSS faults.
The developer should inspect the first container immediately after the banner and look for something like:
width: 260px;
max-width: ...;
width: 40%;
or an old table/grid structure with a fixed-width column.
There's another clue in your screenshot: "View in: Mobile | Classic". This is Web Wiz Forums 12.07, so there may be a legacy mobile stylesheet/template involved. Your phone appears to be getting the mobile version, and that mobile template may be inheriting a desktop column width that isn't being expanded to the viewport.
I'd report the bug roughly like this:
Mobile layout: Header/banner correctly scales to full viewport width, but main content container is only ~40% of viewport width. All content boxes share the same right boundary, suggesting a parent wrapper/table/column width issue rather than individual elements. Check mobile stylesheet/breakpoint and parent container immediately below header. Firefox desktop reportedly shows a similar issue at ~75% width.
That Firefox observation now becomes very useful, because the amount changes with viewport/browser while the basic fault remains. That's exactly the sort of thing I'd expect from a responsive width calculation/breakpoint problem.
And your OPPO is actually doing a pretty good job as a beta-testing torture device. 😁
Back to Top
Nunga View Drop Down
Admin Group
Admin Group
Avatar

Joined: 17 hours 19 minutes ago
Status: Offline
Points: 4
Post Options Post Options   Thanks (0) Thanks(0)   Quote Nunga Quote  Post ReplyReply Direct Link To This Post Posted: 20 minutes ago at 10:25am
Im working on that right now...
Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.07
Copyright ©2001-2024 Web Wiz Ltd.

This page was generated in 0.074 seconds.