Halo Waypoint Bugs

Hello everyone!

With our ever-evolving site and forums, there are bound to be bugs which manage to sneak past us. Please use this thread to report any and all bugs or errors you may find while browsing halowaypoint.com, the Halo 4 Stats App, Halo Waypoint on your mobile device and the Waypoint Forums.

A bug is an error or unintended action which should be reported. Here are a few examples of bugs:

  • Broken links
  • Missing images
  • Videos not playing
  • Error messages
    When reporting a bug or error, please provide us with the following information:
  • Description of the bug/error
  • Repro steps
  • Browser

Bug: Email notifications don’t work
Description: Regardless of your email notification settings, you will not receive emails, this has been the case for many months now.
Repro steps: Enable email notifications for any topic.
Browser: Chrome Version 25.0.1364.68 m

BUG: Spartan avatars can prevent relative timestamps from displaying

If images on the page take too long to load, then the “timeago” script (that converts absolute timestamps into relative ones, like “a month ago”) won’t run in a timely manner. This is because the timeago feature is only activated after everything on the page has loaded. The bug most often occurs when viewing threads where multiple people are using their Spartan renders as avatars; when the site is under heavy load, these can take ages to appear, jamming up the timeago feature.

I have seen this occur in Mozilla Firefox 18.0.2. It’s not a bug that can be reproduced on demand; you must view a thread where people are using Spartan avatars, while the servers are under enough load to cause the image to lag.

How to fix it

When you’re on the forum index, the SCRIPT tag that invokes the timeago functionality is the next sibling of DIV#halo_layout. Its contents are as follows:

//<![CDATA[
Sys.WebForms.PageRequestManager.getInstance().add_pageLoaded(loadTimeAgo);
function loadTimeAgo() {
jQuery.timeago.settings.refreshMillis = 60000;

// english
jQuery.timeago.settings.strings = {
prefixAgo: null,
prefixFromNow: null,
suffixAgo: “ago”,
suffixFromNow: “from now”,
seconds: “less than a minute”,
minute: “a minute”,
minutes: “%d minutes”,
hour: “an hour”,
hours: “%d hours”,
day: “a day”,
days: “%d days”,
month: “a month”,
months: “%d months”,
year: “a year”,
years: “%d years”,
numbers:
};

jQuery(‘abbr.timeago’).timeago();
}//]]>

Basically, you guys are using ASP.NET’s JS library to hook a timeago call to the window’s onload event. Instead, you should probably hook it to jQuery’s ready event:

$.ready(
function() {
jQuery.timeago.settings.refreshMillis = 60000;
jQuery.timeago.settings.strings = {
prefixAgo: null,
prefixFromNow: null,
suffixAgo: “ago”,
suffixFromNow: “from now”,
seconds: “less than a minute”,
minute: “a minute”,
minutes: “%d minutes”,
hour: “an hour”,
hours: “%d hours”,
day: “a day”,
days: “%d days”,
month: “a month”,
months: “%d months”,
year: “a year”,
years: “%d years”,
numbers:
};
jQuery(‘abbr.timeago’).timeago();
}
);

Onload waits for all resources to load. DOMContentReady only waits for the DOM to be fully constructed.

BUG: QUOTEs and CODEs inside of a SPOILER have the wrong font color

QUOTEs and CODEs inside of a SPOILER use the same font color they would use when outside of a SPOILER, leaving their contents illegible. This is easy to reproduce:

> See?

See?

This is the result of a CSS rule applied to p, div, .p. The following CSS should fix it:

div.spoilerbox div.innercode,
div.spoilerbox div.innerquote{color:#000!important}

I see this in Mozilla Firefox 18.0.2, but given the cause, it’d probably occur in any browser.

Halo waypoint stats, some games are not showing up. My last game from last night (~10pm est). This was also reported in forums by several other users on Saturday Morning (2/17).

Description of the bug: I can’t get on the Halo 4 Stats App. It keeps giving me an error code: 808A3D47-DBF5-48CF-9D32-B543C859853E. Whenever I keep clicking “try again” I keep getting a different error code.

Repro Steps: Signed out and back in but still gives me an error.

Browser: Google Chrome version 24.0.1312.57.

Description of the bug: The “jump to first admin post” feature does not always work. In some threads, it goes to the top of the thread’s last page, regardless of whether or not there is an admin page there.

Repro steps: Click the “343” logo on a thread’s icon. I’m not sure if the bug happens on all threads, but it happened on this one (?find=firstadminreply).

Browser: Firefox 19.0

Description of the bug: missing avatars and some misc images
Repro Steps: Signed out and back in but still gives me an error, rebooted computer, tried alternate device/browser.

Browser: Google Chrome version 25.0.1364.97 m and firefox 18.0.2, xbox 360 internet explorer, nintendo 3ds web browser.

Sorry i cant provide repro steps but facing so many issues im getting frustrated and can’t really isolate them

  • Cant see halo 4 stats
  • Get Error 500 when trying to see waypoint career
  • Get automagically signed out after some reloads
  • When loading some pages get 2 rotating progress donuts (a larger and a smaller one), page chrome/frame but no content
  • On main page some videos/images get ‘broken resource’ icon

Seems like a long way down from where waypoint used to be.

OSX, Chrome 24.0.1312.57

-Edit-
Clearing system cache seems to have fixed the problem.

Bug: The newest version of Firefox crashes every time while checking my game history on the stats app.

Hello my broswer do not work with stats of halo 4 and my broswer is opera please help
Thank you

So this is a bug with the XBL version of waypoint…

I’ve unlocked the first 4 domain terminals from the Halo 4 campaign and the 4th one will not load on waypoint. Is there a way to fix this without re-downloading Waypoint?

Bug: Bottom of the page has weird text issues

Image: Image :slight_smile:

This only started happening after the File Browser was added to the site.

As far as I can see, it only occurs on the forum pages.

As I’ve posted in the link below,

https://forums.halowaypoint.com/yaf_postst191221_CE-Anniversary-terminal-unlocks-broken.aspx

Bug: I’ve recently found all the terminals in halo:ce but while waypoint was showing the achievement unlocked it wouldn’t give me access to them in the classified area.

Bug 2: Signed in to waypoint on the web (IE 10 on my surface rt) and the Xbox app. Both are now showing me at career milestone 0 with no achievements unlocked even though I was at milestone 50 (I think) a few days ago.

Tried signing out then back in as well as loading up halo:ce then signing back in. Next stop was here.

Any help would be much appreciated.

Edit: milestone stats seem to be back for the moment, still having the halo:ce terminal issue though.

Edit 2: Decided to try the codes one last time and they worked. Weird, but I’m not complaining! Liked the hidden terminal. Anyway… this whole post is rather pointless now. :-/

> Description of the bug: The “jump to first admin post” feature does not always work. In some threads, it goes to the top of the thread’s last page, regardless of whether or not there is an admin page there.
>
> Repro steps: Click the “343” logo on a thread’s icon. I’m not sure if the bug happens on all threads, but it happened on this one (?find=firstadminreply).
>
> Browser: Firefox 19.0

Thanks! Investigating this bug now!

> Bug: Bottom of the page has weird text issues
>
> Image: Image :slight_smile:
>
> This only started happening after the File Browser was added to the site.
>
> As far as I can see, it only occurs on the forum pages.

Thank you! Investigating!

Description of the bug/error: When on the "waypoint career section of the site, when viewing “Stats by game title” the total games, K/D ration, and Total Kills has weird text issues.

Image: http://gyazo.com/cf2ab1db493979c0a6fefd6737acd5c5.png?1362224486

Repro steps: Refreshed page, backed out of page and went back in.

Browser: Firefox.

Bug: When Clicking on the tweet button in halo stats for war games or spartan ops, no link is in the twitter window, just text saying “check out these stats on @HaloWaypoint

Facebook button Puts a link to app.halowaypoint.com and nothing else

email button puts a link to the game

reproduction: go to a wargames/spartan ops game page and clikc the twitter/facebook buttons

Browsers: IE, FF, Chrome

Bug: When viewing Waypoint on Xbox or PC my spartan is always shown in standard recruit armor instead of my custom set up.

The thread icons still do not display correctly. It is sporadic; sometimes they do the right thing, other times not.

For example, a thread icon might appear green with a + even though no new posts have been made since it was last viewed.