You've already forked WiiMart.org
mirror of
https://github.com/WiiMart/WiiMart.org.git
synced 2026-02-04 13:55:55 -08:00
61 lines
2.9 KiB
HTML
61 lines
2.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-compatible" content="IE=edge">
|
|
<meta http-equiv="refresh" content="0; URL=/support">
|
|
<title>Error Code Checker</title>
|
|
<meta property="og:title" content="Error Code Checker">
|
|
<meta property="og:description" content="Use this tool to troubleshoot errors on the Wii Shop Channel.">
|
|
<meta property="og:image" content="https://wiimart.org/media/branding-bag.png">
|
|
</head>
|
|
|
|
<body></body>
|
|
|
|
</html>
|
|
|
|
<!--the following is kept just in case its wanted again-->
|
|
|
|
<!--
|
|
<hr style="margin-bottom:20px;" class="dothr">
|
|
<div class="row">
|
|
<div class="box" id="checkstat">
|
|
<h2>WiiMart Shop Status checker</h2>
|
|
<a href="javascript:checktheshop();" onclick="spinnerallowed=false;" id="shopchecker"><button>Check oss-auth (wiimart)</button></a>
|
|
<script>
|
|
function checktheshop() {
|
|
document.getElementById("checkresultt").innerText="Checking..";
|
|
// yes im using a image, this is for older browser compatability & safer :3
|
|
var shopchecktemp = new Image();
|
|
shopchecktemp.src="https://oss-auth.thecheese.io/oss/oss/common/images//spacer.gif";
|
|
shopchecktemp.id="stat";
|
|
document.getElementById("checkstat").appendChild(shopchecktemp);
|
|
shopchecktemp.onload= shopisup;
|
|
shopchecktemp.onerror= shopisdown;
|
|
}
|
|
function shopisup() {
|
|
document.getElementById("checkresultt").style.color="#34BEED";
|
|
document.getElementById("checkresultt").innerText="Shop is up! (on console)";
|
|
}
|
|
function shopisdown() {
|
|
document.getElementById("checkresultt").style.color="#FF4242";
|
|
document.getElementById("checkresultt").innerText="Shop is down... (on console)";
|
|
}
|
|
</script>
|
|
<style>
|
|
#checkresultt{line-height:10px; max-height:10px; display:block; margin-top:20px;}
|
|
#stat {width:1px; height:1px; position:absolute;bottom:3px;right:3px; background-color:red;}
|
|
</style>
|
|
<p id="checkresultt" style="color:#34BEED; height:10px;">...</p>
|
|
<p style="opacity:50%; font-size:15px; margin-top:0px;">*results may not be accurate, if you check the shop and its down even if this says its up, go to <a href="/support" >our support page</a>. <br> its likely something is wrong with the shop (like a page is broken), but it is still technically "up".</p>
|
|
</div>
|
|
|
|
|
|
<div class="box" id="results" style="transition:.3s easein-out; text-align:center;">
|
|
<h2 id="code"></h2>
|
|
<p id="issue"></p>
|
|
<p><a href="javascript:reseterrorcodeform();" onclick="spinnerallowed=false;" style="color: #FF4242;cursor:pointer;text-align:center; text-decoration:underline;"><b>Check another error</b></a></p>
|
|
</div>
|
|
</div>
|
|
--> |