QtWebEngine版本与Chromium版本对应关系

https://wiki.qt.io/QtWebEngine/ChromiumVersions

https://blog.csdn.net/zhanglixin999/article/details/130962868


Qt VersionChromium Version
6.7.2118.0.5993.220
6.7.0118.0.5993.220
6.6.0112.0.5615.213
6.5.0108.0.5359.181
6.4.0102.0.5005.177
6.3.094.0.4606.126
6.2.6-6.2.8102.0.5005.177
6.2.4-6.2.594.0.4606.126
6.2.090.0.4430.228
5.15.3–5.15.x87.0.4280.144 Qt5.x的最高版本
5.15.283.0.4103.122
5.15.0–5.15.180.0.3987.136
5.14.0–5.14.177.0.3865.98
5.13.0–5.13.273.0.3683.105
5.12.0–5.12.769.0.3497.113
5.11.0–5.11.365.0.3325.151
5.10.161.0.3163.140
5.10.061.0.3163.99
5.9.0–5.9.956.0.2924.122
5.8.053.0.2785.148
5.7.0–5.7.149.0.2623.111
5.6.349.0.2623.111 支持Windows XP的最高QT版本
5.6.0–5.6.245.0.2554.101
5.5.0–5.5.140.0.2214.115
5.4.0–5.4.237.0.2062.103


Windows XP 最后一个版本的 chromium 是49.0.2623.112

Windows 7 最后一个版本的 chromium 是109.0.5414.149


本文链接地址: QtWebEngine版本与Chromium版本对应关系
https://blog.qingfengju.com/index.asp?id=456

分类:Web开发 查看次数:3366 发布时间:2025/3/7 9:21:40

修改 C:\Windows\System32\inetsrv\config\applicationHost.config 和网站的 Web.Config

<add name="php_FastCgiModule" path="*.php" verb="*" modules="FastCgiModule" scriptProcessor="D:\Work\YSGPT\Server\PHP\php-cgi.exe" resourceType="Either" responseBufferLimit="0"/>

注意增加 responseBufferLimit="0"


修改 php.ini

output_buffering = Off


在PHP代码中启用无缓存输出

<?php
// 10 minutes
set_time_limit(10000);

header('Cache-Control: no-cache');
header('Connection: keep-alive');
header('X-Accel-Buffering: no');

// Chrome 浏览器必须先收到一些数据,才能立即显示到页面
echo str_pad(' ', 1050);
flush();
// ...



本文链接地址: IIS+PHP流式无缓存输出
https://blog.qingfengju.com/index.asp?id=452

分类:Web开发 查看次数:4482 发布时间:2024/4/17 12:12:06