我找到了一个我喜欢的 html5 文件上传器插件(可恢复),并且在将文件保存到硬盘时,除了在服务器(php)端之外,一切正常。也许有人可以看看并给我建议?因为我不断收到日志错误消息,我怀疑我的@move_uploaded_file
权限有问题?或者,如果有人可以让我知道在哪里查找任何 php 错误,那也很有用。我是初学者。
$temp_dir = '/public_html/uploads/'.$_POST['resumableIdentifier'];
$dest_file = '/public_html/uploads/'.$_POST['resumableFilename'].'.part'.$_POST['res umableChunkNumber'
// create the temporary directory
@mkdir($dir, 0777, true);
// move the temporary file
if (!@move_uploaded_file($file['tmp_name'], $dest_file)) {
_log('Error saving (move_uploaded_file)';