Bot
Pixeled.XYZ
- Feb 16, 2014
- 71
- 24
REQUEST LINECan you show me what you mean in screenshots?
The reason why id rather do Teamviewer is because I CBA to set this up on my localhost and test it out, and you already have it set up, so yeah, anyways, here's what I did without it live, so can't guarantee it'll work.I kinda don't want to download teamviewer on my vps. The download is right there anyway, can't you just find whats up, and send me the line to replace?
<?php
if( !preg_match( "/index.php/i", $_SERVER['PHP_SELF'] ) ) { die(); }
?>
<style type="text/css">
a {
text-decoration: none;
}
</style>
<div class="mws-panel grid_8">
<div class="mws-panel-header">
<span class="mws-i-24 i-cog">Management Controls</span>
</div>
<div class="mws-panel-body"><div class="mws-panel-content">
<?php
if( isset( $_GET['clear_requests'] ) ) {
$db->query( "DELETE FROM requests WHERE `for` = '{$user->data['id']}'" );
echo "<div class=\"square good\" align=\"left\">";
echo "<strong>Success</strong>";
echo "<br />";
echo "Requests cleared.";
echo "</div>";
}
elseif( isset( $_GET['clear_all_requests'] ) and ( $user->hasGroup( '4' ) or $user->hasGroup( '5' ) ) ) {
$db->query( "DELETE FROM requests" );
echo "<div class=\"square good\" align=\"left\">";
echo "<strong>Success</strong>";
echo "<br />";
echo "Requests cleared.";
echo "</div>";
}
if( $user->hasGroup( '4' ) or $user->hasGroup( '5' ) ) {
?>
<form style="display: inline;" action="?clear_all_requests" method="post" onsubmit="if( !confirm('Are you sure you want to delete all requests?') ) { return false; }">
<div style="float: right;"><input type="submit" class="mws-button red" value="Clear all requests" /></div>
</form>
<?php
}
?>
<form style="display: inline;" action="?clear_requests" method="post">
<div style="float: right;"><input type="submit" class="mws-button red" value="Clear my requests" /></div>
</form>
<form style="display: inline;" action="#" onsubmit="Radi.deleteCheckedRequests(); return false;" method="post">
<div style="float: right;"><input type="submit" class="mws-button red" value="Clear selected requests" /></div>
</form>
<br clear="all"/>
</div></div>
</div>
<div class="mws-panel grid_8">
<div class="mws-panel-header">
<span class="mws-i-24 i-cog">Filter by type</span>
</div>
<div class="mws-panel-body"><div class="mws-panel-content">
<strong>
<?php
$query = $db->query( "SELECT * FROM request_types" );
echo "<a href=\"#\" onclick=\"Radi.requestsByType('all'); return false;\">All</a> ";
while( $array = $db->assoc( $query ) ) {
echo "<a href=\"#\" onclick=\"Radi.requestsByType({$array['id']}); return false;\" style=\"color: #{$array['colour']};\">{$array['name']}s</a> ";
}
?></strong>
</div></div>
</div>
<div class="mws-panel grid_8">
<div class="mws-panel-header">
<span class="mws-i-24 i-cog">Requests</span>
</div>
<div class="mws-panel-body"><div class="mws-panel-content">
<div id="requestlist"></div>
<script type="text/javascript">
//<![CDATA[
Radi.requestsByType('*');
//]]>
</script>
</div></div>
</div>
The reason why id rather do Teamviewer is because I CBA to set this up on my localhost and test it out, and you already have it set up, so yeah, anyways, here's what I did without it live, so can't guarantee it'll work.
Replace your requetss.php with this, the one in _res/radio
PHP:<?php if( !preg_match( "/index.php/i", $_SERVER['PHP_SELF'] ) ) { die(); } ?> <style type="text/css"> a { text-decoration: none; } </style> <div class="mws-panel grid_8"> <div class="mws-panel-header"> <span class="mws-i-24 i-cog">Management Controls</span> </div> <div class="mws-panel-body"><div class="mws-panel-content"> <?php if( isset( $_GET['clear_requests'] ) ) { $db->query( "DELETE FROM requests WHERE `for` = '{$user->data['id']}'" ); echo "<div class=\"square good\" align=\"left\">"; echo "<strong>Success</strong>"; echo "<br />"; echo "Requests cleared."; echo "</div>"; } elseif( isset( $_GET['clear_all_requests'] ) and ( $user->hasGroup( '4' ) or $user->hasGroup( '5' ) ) ) { $db->query( "DELETE FROM requests" ); echo "<div class=\"square good\" align=\"left\">"; echo "<strong>Success</strong>"; echo "<br />"; echo "Requests cleared."; echo "</div>"; } if( $user->hasGroup( '4' ) or $user->hasGroup( '5' ) ) { ?> <form style="display: inline;" action="?clear_all_requests" method="post" onsubmit="if( !confirm('Are you sure you want to delete all requests?') ) { return false; }"> <div style="float: right;"><input type="submit" class="mws-button red" value="Clear all requests" /></div> </form> <?php } ?> <form style="display: inline;" action="?clear_requests" method="post"> <div style="float: right;"><input type="submit" class="mws-button red" value="Clear my requests" /></div> </form> <form style="display: inline;" action="#" onsubmit="Radi.deleteCheckedRequests(); return false;" method="post"> <div style="float: right;"><input type="submit" class="mws-button red" value="Clear selected requests" /></div> </form> <br clear="all"/> </div></div> </div> <div class="mws-panel grid_8"> <div class="mws-panel-header"> <span class="mws-i-24 i-cog">Filter by type</span> </div> <div class="mws-panel-body"><div class="mws-panel-content"> <strong> <?php $query = $db->query( "SELECT * FROM request_types" ); echo "<a href=\"#\" onclick=\"Radi.requestsByType('all'); return false;\">All</a> "; while( $array = $db->assoc( $query ) ) { echo "<a href=\"#\" onclick=\"Radi.requestsByType({$array['id']}); return false;\" style=\"color: #{$array['colour']};\">{$array['name']}s</a> "; } ?></strong> </div></div> </div> <div class="mws-panel grid_8"> <div class="mws-panel-header"> <span class="mws-i-24 i-cog">Requests</span> </div> <div class="mws-panel-body"><div class="mws-panel-content"> <div id="requestlist"></div> <script type="text/javascript"> //<![CDATA[ Radi.requestsByType('*'); //]]> </script> </div></div> </div>
Fixed.Check discord.
I am the one that originally leaked/posted this. I used to work with @UndeadDevilHD and Andy (Don't know his devbest user)
I am 98% sure this was the thread that I leaked it on;You must be registered for see links
don't even try and take credit for this leak, this is a famous panel used on Habbo fansites and has been out for many years....
I apologize, the username should be Skye. Same password.
You must be registered for see links
Updated thread with correct login file in the download.
Cheers!
BumpHTTP Error 500: I am trying to install the request line