Recently, Google released a new version of its browser (Chrome 94), which further enhances network security by blocking HTTP access to localhost services. This has caused many systems that rely on local services, such as local storage services and printing services, to stop functioning. To address this issue, PrintSpirit promptly released a new version (2.08) that resolves the problem. If you are encountering this issue, please upgrade to the latest version as soon as possible.
Solution:
1. Install the new version of PrintSpirit. Download link: http://www.printspirit.cn/download/spirit-web-setup.exe
2. Modify the program
<!DOCTYPE html>
<html>
<head>
<title>Print Test</title>
- <script src="http://127.0.0.1:9011/js/spirit.js"></script>
- <script src="http://127.0.0.1:19011/js/spirit.js"></script>
+ <script src="https://127.0.0.1:9443/js/spirit.js"></script>
+ <script src="https://127.0.0.1:19443/js/spirit.js"></script>
</head>
<body>
<script type="text/javascript">
...
</body>
</html>