“Waiting for available socket”, fix from the server end

爱⌒轻易说出口 提交于 2021-02-04 07:26:05

问题


I am accessing my PHP/Apache website from Chrome. And Chrome refuses to load the page, saying "Waiting for available socket".

Other pages on this same virtual host also have the problem.

Other virtual hosts on the same server load perfectly fine.

Please advise how I can fix this.


回答1:


According to various sources, Chrome opens a maximum of 6 simultaneous connections to the same server. Possible solutions include

  • Host data on different virtual hosts on the same machine.
  • Consolidate content to be loaded to require fewer connections (for example, put everything in a single .data file for Emscripten)
  • Make sure you don't have too many <video> or <audio> tags marked with the attribute preload="auto".
  • Adjust Chrome to permit up to 32 connections. Policy List

Related question: Chrome hangs after certain amount of data transfered - waiting for available socket



来源:https://stackoverflow.com/questions/42445360/waiting-for-available-socket-fix-from-the-server-end

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!