我已将本地主机文件上传到我的网站,但显示此错误:-
: [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/ ***Folders\FileName*** .php
我个人觉得内容被保存在缓存文件夹中的文件中,当我将文件上传到Web服务器时,它正在尝试访问缓存的localhost文件夹。
而不是做的file_put_contents(***WebSiteURL***...),你需要使用服务器路径/cache/lang/file.php(如/home/content/site/folders/filename.php)。
file_put_contents(***WebSiteURL***...)
/cache/lang/file.php
/home/content/site/folders/filename.php
您不能重新打开文件HTTP并期望将其写入。相反,您需要使用本地路径打开它。
HTTP