-1
私はテストするためにサイズを50バイトに制限しようとしていましたが、このアプローチは何らかの理由で動作しません。私はphp.iniへのアクセス権がなく、可能であればコードでこれを行いたいと思います。php内の最大アップロードサイズの値を設定する方法(php.iniではなく)
形式:
<form action='uploadFile.php' target='uploadIframe' method='post' enctype='multipart/form-data'>
<div class='fieldRow'>
<label>Select the file: </label>
<input type='file' name='file' id='file' onChange='submitForm1(this)' />
</div>
</form>
<iframe style='border:0;' id='uploadIframe' name='uploadIframe'></iframe>
<div id='successMessage'></div>
uploadFile.php
<!doctype html>
<html lang="en">
<head>
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<?php
$upload_dir = "../sitedata/auditfiles";
$result["status"] = "200";
$result["message"]= "Error!";
if(isset($_FILES['file'])){
echo "Uploading file... <br />";
if ($_FILES['file']['error'] == UPLOAD_ERR_OK) {
$filename = $_FILES['file']['name'];
move_uploaded_file($_FILES['file']['tmp_name'],
$upload_dir.'/'.$filename);
$result["status"] = "100";
$result["message"]="File was uploaded successfully!";
ここでは問題である:
}elseif ($_FILES["file"]["size"] > 50) {
$result["status"] = "200";
$result["message"]= "Error: Document size exceeds maximum limit of 5 MB. Please reduce the file size and retry upload";
}
//initial code that worked but only does it through php.ini
/* elseif ($_FILES['file']['error'] == UPLOAD_ERR_INI_SIZE) {
$result["status"] = "200";
$result["message"]= "The file is too big!";/**/
} else {
$result["status"] = "500";
$result["message"]= "Unknown error!";
}
}
?>
</body>
</html>
<script>
$(function() {
$('#successMessage', window.parent.document).html('<?php echo htmlspecialchars($result["message"]); ?>');
});
</script>
function submitForm1(upload_input_field){
//alert("works");
upload_input_field.form.submit();
upload_input_field.disabled = true;
return true;
}
クイックアンサー:.htaccess/.user.ini ...スクリプトの内部が機能しません。 – bwoebi
'if($ _ FILES [" file "] [" size "]> 50)'しようとしているものが最初に超えているかどうかをチェックするのではなく、 50. –
php.iniファイルを実際に編集する代わりにini_setを使用できます。 – McStuffins