ztizzlegaming / CSGOWinBig

Open-source Counter-Strike: Global Offensive jackpot betting website.
MIT License
170 stars 104 forks source link

Maintenance page #97

Closed GreYzZ closed 8 years ago

GreYzZ commented 8 years ago

Hey guys, I saw that there is a maintenance site. https://github.com/ztizzlegaming/CSGOWinBig/blob/master/src/index.html#L73 How can I activate this page? So if someone want to join the site he only see this text

andrewda commented 8 years ago

That is simply text shown on the main page to indicate that the site is under maintenance. To "activate" it, remove the <!-- and -->, making the line only <h1>NOTE: The site is undergoing maintenance. Please bear with us.</h1>. This will have absolutely no affect on the rest of the site, though, so even if you do display this message, it's possible for the site to be working fine.

It's also quite easy to redirect the user to another page when they load the index file. Change index.html to index.php and at the very top of the file, write

<?php
header("Location: http://yoursite.com/maintenance.html");
?>

where http://yoursite.com/maintenance.html is the page that you would like to redirect users to.

GreYzZ commented 8 years ago

@andrewda Okay thanks