forked from QuinnEbert/Liquidsoap-Requester
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoperator.php
More file actions
26 lines (26 loc) · 685 Bytes
/
operator.php
File metadata and controls
26 lines (26 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
// Ha! You thought this might do something interesting?
//
// Sorry to disappoint, but, this really just lets you see what IP address
// the server sees you as coming in from. It can be helpful for testing your
// $myUsers setting, however.
//
// KEEP AN EYE OUT -- More useful diagnostic stuff will probably show up here
// in the future!
?>
<html>
<head>
<title>Testing Operator</title>
</head>
<body>
<h1>Testing Operator</h1>
<hr />
Your IP address currently reads as:<br />
<pre><?php echO($_SERVER['REMOTE_ADDR']); ?></pre>
<hr />
<address>
For Liquidsoap Requester by <a href="http://www.quinnebert.net/">Quinn
Ebert</a>
</address>
</body>
</html>