| Server IP : 167.235.67.158 / Your IP : 216.73.216.95 Web Server : Apache System : Linux ubuntu-8gb-nbg1-1 6.8.0-111-generic #111-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 11 23:16:02 UTC 2026 x86_64 User : upstairsbar.co.uk ( 982) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/bc.the-word.com/wstest/ |
Upload File : |
<!DOCTYPE html>
<html>
<head>
<title>WebSocket Test</title>
<script>
window.onload = function () {
var socket = new WebSocket("wss://bc.the-word.com:8080");
socket.onmessage = function (event) {
var msgDiv = document.getElementById("message");
msgDiv.innerHTML = event.data;
};
socket.onerror = function (error) {
console.log("Error: " + error.message);
};
};
</script>
</head>
<body>
<div id="message">Waiting for connection...</div>
</body>
</html>