commit 7bb58271af91831b5e548441475d71cc90ccb894
parent c6fa553f2f30bef866f98c130c3f7961f7dea7ec
Author: ThomasV <thomasv@gitorious>
Date: Wed, 11 Jan 2012 19:02:26 +0300
remove electrum.php
Diffstat:
2 files changed, 0 insertions(+), 52 deletions(-)
diff --git a/server/README b/server/README
@@ -27,8 +27,6 @@ INSTALL
4. launch the server: nohup python -u server.py > /var/log/electrum.log &
-5. if you have a webserver, you can use electrum.php to forward http requests to the server
-
Note:
You do not want to run bitcoin-abe and the server simultaneously, because they will both try to update the database.
diff --git a/server/electrum.php b/server/electrum.php
@@ -1,50 +0,0 @@
-<?
-
- function do_query($q){
- $q .= "#";
-
- $socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
- if ($socket === false) {
- echo "socket_create() failed: reason: " . socket_strerror(socket_last_error()) . "\n";
- }
-
- $result = socket_connect($socket, 'ecdsa.org', 50000);
- if ($result === false) {
- echo "socket_connect() failed.\nReason: ($result) " . socket_strerror(socket_last_error($socket)) . "\n";
- }
- socket_write($socket, $q, strlen($q));
- $buf='ex';
- if (false == ($bytes = socket_recv($socket, $buf, 2048, MSG_WAITALL))) {
- echo "socket_recv() failed; reason: " . socket_strerror(socket_last_error($socket)) . "\n";
- }
- socket_close($socket);
- return $buf;
- }
-
- $pass = '';
-
- $query = $_POST['q'];
- if( !$query ) {
- echo "Welcome to <a href=\"http://ecdsa.org/electrum/\">Electrum</a><br/>";
- echo "This server uses ports 80 (http), 443 (https) and 50000 (raw)<br/>";
- echo "Port 50000 is recommended for efficiency.<br/><br/>";
-
- echo "Server status:<br/>";
- echo "Number of blocks: ". do_query( "('b','')" ) ."<br/>";
- echo "Current load: ". do_query( "('load','$pass')" ) ."<br/><br/>";
-
- echo "List of active servers:<br/>\n";
- $str = do_query( "('peers','')" );
-// preg_match_all("/\('(.*?)', '(\d+\.\d+\.\d+\.\d+)'\)/",$str,$matches,PREG_SET_ORDER);
- preg_match_all("/\('(.*?)', '(.*?)'\)/", $str, $matches, PREG_SET_ORDER);
- echo "<ul>";
- foreach( $matches as $m){
- echo "<li><a href=\"http://" . $m[2] . "/electrum.php\">" . $m[2]."</a> <small>[".$m[1]."]</small></li>";
- }
- echo "</ul>";
-
- } else {
- $buf = do_query($query);
- echo $buf;
- }
-?>