From bae80d59f299375193a74e345a901a6033f6bc95 Mon Sep 17 00:00:00 2001 From: Gemdation <166338329+Gemdation@users.noreply.github.com> Date: Sat, 5 Apr 2025 13:18:56 -0500 Subject: [PATCH] Added error checker --- 404.html | 2 +- branding.html | 13 +++++-------- download.html | 19 ++++++------------- errors.html | 47 +++++++++++++++++++++++++++++++++++++++++++++++ fishiemart.html | 14 +++++--------- index.html | 25 ++++++++++++++----------- media/index.html | 4 +++- meta/error.js | 29 +++++++++++++++++++++++++++++ meta/index.html | 6 +++++- wad/index.html | 2 +- 10 files changed, 116 insertions(+), 45 deletions(-) create mode 100644 errors.html create mode 100644 meta/error.js diff --git a/404.html b/404.html index 829daeb..96b694c 100644 --- a/404.html +++ b/404.html @@ -5,7 +5,7 @@
(enable autoplay on your browser for the music to continue playing throughout the website)
(enable autoplay on your browser for the music to continue playing throughout the website)
(enable autoplay on your browser for the music to continue playing throughout the website)
(enable autoplay on your browser for the music to continue playing throughout the website)
(enable autoplay on your browser for the music to continue playing throughout the website)
Want to contribute to this? Go see the error.js file over at GitHub
+ + + + \ No newline at end of file diff --git a/fishiemart.html b/fishiemart.html index f8bd04a..a4e23db 100644 --- a/fishiemart.html +++ b/fishiemart.html @@ -16,16 +16,12 @@ -
(enable autoplay on your browser for the music to continue playing throughout the website)
(enable autoplay on your browser for the music to continue playing throughout the website)
(enable autoplay on your browser for the music to continue playing throughout the website)
(enable autoplay on your browser for the music to continue playing throughout the website)
In case the originals aren't enough, we have also added tons of custom Virtual Console injects! Just some of the latest titles we've added are The New Tetris, EarthBound, Super Mario All-Stars + Super Mario World, and Mortal Kombat.
@@ -83,6 +83,9 @@The owner and developers are updating on their own time. In the meantime you can check the progress above for what features do and don't work. Important: Gifting is no longer available at the moment.
+Gifting was available using a WiiConnect24 revival. Unfortunately we were asked to stop sending out gifts via their service.
+The web server stores IP addresses of those that connect to it, common with web servers. Wii console serial numbers are stored, in the SOAP database with encryption.
diff --git a/media/index.html b/media/index.html index 2a2b2f8..076e22a 100644 --- a/media/index.html +++ b/media/index.html @@ -4,7 +4,7 @@Note: WAD files used to be here, they have been since moved to /wad. diff --git a/meta/error.js b/meta/error.js new file mode 100644 index 0000000..7f41ba6 --- /dev/null +++ b/meta/error.js @@ -0,0 +1,29 @@ +const errorCodes = { + "204042": "User is not registered with the server", + "204961": "SSL cipher error when trying to communicate with SOAP servers", + "204050": "You do not own a title; ticket not found", + "204036": "Problem importing Title metadata", + "204035": "Problem importing ticket", + "204037": "Problem importing title content", + "204034": "Invalid SOAP response", + "204704": "Equivalent to a HTTP 404 error", + "209531": "Page not found", + "209552": "Server error" +}; + +document.getElementById("submitBtn").addEventListener("click", function() { + const codeInput = document.getElementById("errorCode").value; + const resultsDiv = document.getElementById("results"); + const inputDiv = document.getElementById("input"); + + if (errorCodes[codeInput]) { + document.getElementById("code").innerText = codeInput; + document.getElementById("issue").innerText = errorCodes[codeInput]; + inputDiv.style.display = "none"; + resultsDiv.style.display = "block"; + } else { + alert("Invalid error code. Please enter a valid 6-digit error code."); + } +}); + +function refreshPage() {location.reload();} \ No newline at end of file diff --git a/meta/index.html b/meta/index.html index 0d7c13b..d45b6db 100644 --- a/meta/index.html +++ b/meta/index.html @@ -4,7 +4,7 @@