我在Chromebook上使用Cloud9IDE,并尝试用PHP编写新文件。
基本上当我点击一个按钮时,我使用JQuery的$.ajax
来读取我的php文件并从php脚本中生成hello.txt文件。我有一个警报设置,所以它调用该函数并读取php文件,但我的新文件没有。
我的问题是为什么这不起作用,我该如何解决这个问题
index.js
$("[data-action=writefile]").click(function(){
$.ajax({
url: 'save.php',
success: function(msg) {
alert('file saved: \n' + msg);
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert("Some error occured");
}
});
});
save.php
<?php
$filename = 'hello.txt';
@ $fp = fopen("exports/".$filename, 'wb');
if (!$fp) {
echo '<p><strong>Cannot generate message file</strong></p></body></html>';
exit;
} else {
$outputstring = 'Hello, i have been generated by the button';
fwrite($fp, $outputstring);
Echo "Message inserted";
}
?>
的index.html
<button class="btn--default" data-action="writefile">Write to File</button>
答案 0 :(得分:2)
尝试打开您的cloud9终端并更改权限:
$ cd /exports
使用chmod更改用户权限。
$ chmod 777 -R ./