最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Is there any alternative to the websockets for using in shared hosting - Stack Overflow

programmeradmin2浏览0评论

Is there any alternative for the websockets to use in shared hosting? I know about node.js, socket.io, Express.js but Can't use them in shared hosting. So, if there is any alternative used for making a realtime website then tell me.

Is there any alternative for the websockets to use in shared hosting? I know about node.js, socket.io, Express.js but Can't use them in shared hosting. So, if there is any alternative used for making a realtime website then tell me.

Share Improve this question asked Jan 5, 2014 at 10:26 user3133148user3133148 2133 silver badges10 bronze badges 3
  • Your best bet would be to get a VPS instead, they go for as low as $5/mo – Henrik Karlsson Commented Jan 5, 2014 at 10:57
  • Get a VPS. Shared hosting sites usually have certain limitations due to their internal server organization. stackoverflow./questions/17529613/… – Kanishka Ganguly Commented Jan 5, 2014 at 13:55
  • @Ineentho Did you mean a web server hosting from office or home? if it is then it is very difficult for me that I'm in Pakistan and there is load shedding of electricity. So, Please tell me is there any other thing to use in? – user3133148 Commented Jan 6, 2014 at 15:26
Add a ment  | 

3 Answers 3

Reset to default 7

I think good alternative is "Server-Sent Events", it is one way but i think its in the most cases better that Websockets because its easier to setup as no special server or libraries needed and there is no extra protocol to follow, just echo from php and onmessage in javascript.

quick example (from https://www.w3schools./html/html5_serversentevents.asp):

Javascript:

var source = new EventSource("demo_sse.php");
source.onmessage = function(event) {
  document.getElementById("result").innerHTML += event.data + "<br>";
};

PHP:

<?php
header('Content-Type: text/event-stream');
header('Cache-Control: no-cache');

$time = date('r');
echo "data: The server time is: {$time}\n\n";
flush();
?>

You may consider using a hosted realtime network like PubNub for realtime munication on shared hosting. Using a hosted realtime solution like PubNub means you won't need to worry about open ports or persistent processes.

There is a full hello world tutorial to help you get started on the PubNub blog here: http://www.pubnub./blog/php-push-api-walkthrough/

A simple example follows.

Let’s take a look at how developers can create channels between PHP and JavaScript. The most mon usage pattern for real time applications will be explained first. A JavaScript Browser (like Firefox) will subscribe and listen for messages with PUBNUB.subscribe(). PHP will then push messages with $pubnub.publish().

PUBNUB.subscribe( { channel : 'my_test_channel' }, function(message) {
if ('some_text' in message) {
    alert(message.some_text);
}} );

The above JavaScript is fully cross browser patible. The code will listen for messages published on ‘my_test_channel’ channel. When a message is received, the JavaScript will validate if ‘some_text‘ exists in the message object. If this attribute exists, then show an alert box!

Now use PHP to publish a message to invoke the JavaScript Alert box.

## Publish Messages To a JavaScript Browser 
$pubnub = new Pubnub( 'publish_key', 'subscribe_key' ); $pubnub->publish(array(
  'channel' => 'my_test_channel',
  'message' => array( 'some_text' => 'hello!' ) ));

This PHP code will send a message to a JavaScript Browser listening on ‘my_test_channel‘ channel. When this PHP Code executes, a JavaScript Browser will receive the PHP array and show an alert message of ‘hello!’.

http://www.pubnub./blog/php-push-api-walkthrough/#sthash.jI8zntnL.dpuf

If your shared hosting provides PHP support, you can use one of the WebSockets libraries in PHP:

  • Ratchet
  • phpwebsocket
  • PHP-WebSockets

For installing Ratchet, read my answer on how to install Composer on a shared hosting.

Alternatively, you can install Node.js on a shared hosting using my project Node.php.

发布评论

评论列表(0)

  1. 暂无评论