gpt4 book ai didi

javascript - 在ubuntu中打开文件和下载不起作用

转载 作者:行者123 更新时间:2023-12-04 19:25:07 30 4
gpt4 key购买 nike

我在 Windows xampp 上完成了我的代码以下载文本(或其他文件)文件并且它的工作很好
但是当我在ubuntu服务器上上传代码时它不起作用
你能帮我吗?

$file = "$username.rsc";
$txt = fopen($file, "w") or die("Unable to open file!");
fwrite($txt,
"{
anything
}

");
fclose($txt);

header('Content-Description: File Transfer');
header('Content-Disposition: attachment; filename='.basename($file));
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
ob_clean();
flush();
header('Content-Length: ' . filesize($file));
header("Content-Type: text/plain");
readfile($file);
ubuntu 上的响应是无法打开文件!

最佳答案

这听起来像是权限问题。确保您的 Apache 用户和组有权访问您尝试修改的文件和目录。

关于javascript - 在ubuntu中打开文件和下载不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71992166/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com