site stuff

This commit is contained in:
Bitl 2017-10-08 14:32:53 -07:00
parent bd54ac857d
commit 859bbc0242
12 changed files with 72 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 195 KiB

View File

@ -0,0 +1,66 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" id="www-roblox-com">
<head><title>Maintenance</title>
<style type="text/css">
.content { border: 1px solid rgb(153, 153, 153);
width: 800px;
margin-top: 0px;
margin-bottom: 10px;
background-color: rgb(255, 255, 255);
margin-right: auto;
margin-left: auto;
text-align: justify;
}
.content h1 { font-family: Comic Sans MS,Geneva,Arial,Helvetica,sans-serif;
margin: 0px;
padding: 3px 4px;
font-size: 12pt;
background-repeat: repeat-x;
color: rgb(0, 0, 0);
background-color: rgb(251, 242, 166);
text-align: center;
}
.content h2 { margin: 0px 0px 0px 0px;
padding: 1px 4px;
background-color: rgb(191,191,191);
font-family: Geneva,Arial,Helvetica,sans-serif;
font-variant: small-caps;
color: rgb(0, 0, 0);
font-size: 16px;
text-align: center;
}
.content p { font-family: Comic Sans MS,Geneva,Arial,Helvetica,sans-serif;
margin: 5px;
font-size: 11px;
line-height: 1.5;
padding-left: 5px;
text-align: center;
padding-right: 5px;
}
</style>
</head>
<body>
<div align="center">
<img src="images/logo.png">
<div class="content">
<h1>
We are upgrading RBXLegacy!<br>
Stay tuned... We'll be back online soon.
</h1>
<h2>
You will be redirected to RBXLEGACY when we are back up.</h2>
<p>
<img src="images/OH_NOES.png"></p>
</div>
</div>
<!-- <script type="text/javascript">
window.window.setTimeout("window.location = 'http://gamejolt.com/games/rbxlegacy/195327'", 5000);
</script> -->
</body></html>

View File

@ -62,6 +62,7 @@ echo "<center>";
echo "<h3><b>".noHTML($row['name'])."</b></h3>";
echo "<h3><b>Map: ".noHTML($row['map'])."</b></h3>";
echo "<h3><b>Client: ".noHTML(base64_decode($row['client']))."</b></h3>";
echo "<h3><b>Version: ".noHTML($_POST['version'])."</b></h3>";
echo "<h3><b>Player Limit: ".noHTML($row['playerlimit'])."</b></h3>";
echo "<h3><b> Creation Time: ".noHTML($row['date'])."</b></h3>";
$stringbuild = $row['ip']."|".$row['port']."|".$row['client'];

View File

@ -27,11 +27,11 @@ $portcrypt = base64_encode($_POST['port']);
date_default_timezone_set('America/Phoenix');
$date = date('m/d/Y h:i:s a', time());
$sql="INSERT INTO games (name, map, ip, port, client, playerlimit, date)
$sql="INSERT INTO games (name, map, ip, port, client, version, playerlimit, date)
VALUES
('$namefixed','$_POST[map]','$ipcrypt','$portcrypt','$clientcrypt','$_POST[playerlimit]','$date')";
('$namefixed','$_POST[map]','$ipcrypt','$portcrypt','$clientcrypt','$_POST[version]','$_POST[playerlimit]','$date')";
if (!$con->query($sql))
{

View File

@ -46,6 +46,8 @@
<input type="text" name="ip" value=<?php print $_SERVER['REMOTE_ADDR']; ?> /><br><br>
<h3>Client: *</h3>
<input type="text" name="client" value="2008" /><br><br>
<h3>RBXLegacy Version: *</h3>
<input type="text" name="version" value="1.17" /><br><br>
<h3>Port: *</h3>
<input type="text" name="port" value="53640"/><br><br>
<h3>Player Limit: *</h3>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 361 KiB

After

Width:  |  Height:  |  Size: 97 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 361 KiB

View File

@ -35,6 +35,7 @@ CREATE TABLE `games` (
`ip` text,
`port` text,
`client` text,
`version` text,
`playerlimit` int(11) NOT NULL,
`date` text
) ENGINE=InnoDB DEFAULT CHARSET=latin1;