1. Is there a way to stream console live, public with the removal of IP addresses?
     
  2. Sure, it's possible. In PHP you only can get the log file. This file is updated every... x minutes.
    So not live :p

    Code:
    <?PHP  $timestamp = time();
      $date = date("d-m-Y", $timestamp);  $fileName = basename($_SERVER['PHP_SELF']);
      $ftp_server = "IP / HOSTNAME";
      $ftp_user_name = "USER";
      $ftp_user_pass = "PASSWORD";
      $ftp_server_file = 'oxide_'.$date.'.txt';  $string = file_get_contents("ftp://$ftp_user_name:$ftp_user_pass@$ftp_server/PATH/server/my_server_identity/oxide/logs/$ftp_server_file");
      $string = explode("\n", $string);
      $string = array_slice($string, -30);
      $string = implode("\n", $string);  echo '<pre>',print_r($string,1),'</pre>';?>
    <script type="text/javascript">  setTimeout(function(){
      window.location.href = "<?PHP echo $fileName; ?>";
      }, 3000);</script>
    Maybe with some socket_open function. Gonna try something, maybe :D
     
  3. why would you want to show all your errors to the world? :3
     
  4. Some of the best devs on Oxidemod dev for my server...

    We dont have errors.
     
  5. Never stated you did just concerned that some plugins print out to the console for owners eyes only and workout knowing how you ate planning on implementing it I was just curious
     
  6. This is great. But... it doesnt omit peoples ip addresses.
     
  7. Easily fixable with some regular expression preg_replace
     
  8. If you are well with PHP would you mind helping out? Im on my own here with web work. No one to assist.
     
  9. Not at all PHP is pretty much a 2nd language to me :3
    [DOUBLEPOST=1439762013][/DOUBLEPOST]$logstring = "My IP is 123.53.13.1";
    $logstring = preg_replace("/(?:[0-9]{1,3}\.){3}[0-9]{1,3}/i","xxx.xxx.xxx.xxx",$logstring);
    echo $logstring;
     
  10. If its possible to look a little fancy. Console output like RUST:IO Map, but hide all players IP address. Dont want anyone getting hurt.