failed to open stream: HTTP wrapper does not support writeable connections(无法打开流:HTTP 包装器不支持可写连接)
问题描述
我已将本地主机文件上传到我的网站,但它显示此错误:-
I have uploaded my localhost files to my website but it is showing me this error:-
: [2] file_put_contents( ***WebsiteURL*** /cache/lang/ ***FileName*** .php)
[function.file-put-contents]: failed to open stream: HTTP wrapper does
not support writeable connections | LINE: 127 | FILE: /home/content/
***FoldersFileName*** .php
我个人认为内容保存在缓存文件夹中的文件中,当我将文件上传到我的网络服务器时,它试图访问缓存的本地主机文件夹.
What i personally feel that the contents get saved in a file in cache folder and when i uploaded the files to my web server it is trying to access the cached localhost folder.
推荐答案
你需要使用服务器路径来代替 file_put_contents(***WebSiteURL***...)
>/cache/lang/file.php(例如/home/content/site/folders/filename.php
).
Instead of doing file_put_contents(***WebSiteURL***...)
you need to use the server path to /cache/lang/file.php
(e.g. /home/content/site/folders/filename.php
).
您不能通过 HTTP
打开文件并期望它被写入.相反,您需要使用本地路径打开它.
You cannot open a file over HTTP
and expect it to be written. Instead you need to open it using the local path.
这篇关于无法打开流:HTTP 包装器不支持可写连接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法打开流:HTTP 包装器不支持可写连接
基础教程推荐
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01