douwan7382 2016-09-27 22:55
浏览 56
已采纳

SSE在脚本执行完之前不发送事件?

I am having a issue where SSE events wait until the script has finished executing before finally sending the data, after hours of searching for a plausible explanation or solution, I have found nothing.

I have found a example however that works on that website, however taking that code onto my server, it doesn't work. (URL: http://www.binarytides.com/monitor-progress-long-running-php-scripts-html5-server-sent-events/)

In this example I have noticed a header of Transfer-Encoding: chunked When I had tried to make Apache send this header through .htaccess with Header set, the response code turned to "(failed)".

I also noticed the example didn't have a Content-Length, where as the one from my server does.

This was all tested on Chrome v.53.0.2785.116m

After that I decided to take it to the stacks.

Here is a example:

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

    function sendMsg($id, $msg) {
        echo "id: $id" . PHP_EOL;
        echo "data: $msg" . PHP_EOL;
        echo PHP_EOL;
        ob_flush();
        flush();
    }

    while ($x < 5) {
        $serverTime = time();
        sendMsg($serverTime, 'server time: ' . date("h:i:s", time()));
        sleep(1);
        $x++;
    }
?>

If I were to perform a request to this script, I would get these headers:

HTTP/1.1 200 OK
Date: Tue, 27 Sep 2016 22:34:11 GMT
Server: Apache
Cache-Control: no-cache
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 91
Keep-Alive: timeout=15, max=43
Connection: Keep-Alive
Content-Type: text/event-stream

I will not get any data from this until the script had finished executing.

At this point I'm unclear if its Apache, or PHP that is at fault here, but from what I can tell the server is at fault. I've tried version of PHP ranging from 5.5-7, all with no luck.

Any ideas on whats going wrong here and how to fix it?

EDIT 1: I tried the same script on another server and it had worked properly, and sent the following headers:

HTTP/1.1 200 OK
Server: nginx
Date: Wed, 28 Sep 2016 15:40:00 GMT
Content-Type: text/event-stream;charset=UTF-8
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=15
Cache-Control: no-cache
ngpass_ngall: 1
  • 写回答

1条回答 默认 最新

  • doushou7169 2016-09-28 21:38
    关注

    I suspect the problem is gzip-ing the output. (Your working nginx server is not doing that.)

    In your .htaccess file, can you try both of these:

    php_flag zlib.output_compression off
    SetEnv no-gzip 1
    

    (Borrowed from https://webmasters.stackexchange.com/q/61258/18151 and its answers.)

    BTW, you shouldn't need to add the chunking header yourself; it will be set if the output is chunked.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 把Excel导入MATLAB显示错误怎么解决?
  • ¥15 Java中消息和缓存如何使用
  • ¥50 易语言把MYSQL数据库中的数据添加至组合框
  • ¥20 求数据集和代码#有偿答复
  • ¥15 关于下拉菜单选项关联的问题
  • ¥20 java-OJ-健康体检
  • ¥15 rs485的上拉下拉,不会对a-b<-200mv有影响吗,就是接受时,对判断逻辑0有影响吗
  • ¥15 使用phpstudy在云服务器上搭建个人网站
  • ¥15 应该如何判断含间隙的曲柄摇杆机构,轴与轴承是否发生了碰撞?
  • ¥15 vue3+express部署到nginx