自分の Web サイトにファイルをアップロードできません。
コード:
$tmpFilePath = $_FILES['upload']['tmp_name'][$i];
//filepath
if ($tmpFilePath != ""){
//Setup the new file path
$newFilePath = "./uploads/$keuze/" . $_FILES['upload']['name'][$i];
//Upload the file into the temp dir
if(move_uploaded_file($tmpFilePath, $newFilePath)) {
//unfinished
}
これは xampp で完璧に機能しましたが、Web サイトがオンラインになったので、次のエラーが表示されます。 /home/arnoudi26/domains/creemersa.be/public_html/upload.php の 36 行目で許可が拒否されました
マップ全体に対して読み取り/書き込みのアクセス許可を設定しましたが、まだ機能していません。