0
我一直在試圖找到一個解決方案,但我似乎找不到一個。我嘗試執行以下ajax調用時收到404響應。代碼工作在本地主機上正常,但當我上傳邊遠服務器上的變化,我得到的錯誤Ajax請求返回404找不到
$('#button-upload').on('click', function() {
$('#form-upload').remove();
$('body').prepend('<form enctype="multipart/form-data" id="form-upload" style="display: none;"><input type="file" name="file" value="" /></form>');
$('#form-upload input[name=\'file\']').trigger('click');
if (typeof timer != 'undefined') {
clearInterval(timer);
}
timer = setInterval(function() {
if ($('#form-upload input[name=\'file\']').val() != '') {
clearInterval(timer);
$.ajax({
url: 'index.php?route=common/filemanager/upload&token=<?php echo $token; ?>&directory=<?php echo $directory; ?>',
type: 'post',
dataType: 'json',
data: new FormData($('#form-upload')[0]),
cache: false,
contentType: false,
processData: false,
beforeSend: function() {
$('#button-upload i').replaceWith('<i class="fa fa-circle-o-notch fa-spin"></i>');
$('#button-upload').prop('disabled', true);
},
complete: function() {
$('#button-upload i').replaceWith('<i class="fa fa-upload"></i>');
$('#button-upload').prop('disabled', false);
},
success: function(json) {
if (json['error']) {
alert(json['error']);
}
if (json['success']) {
alert(json['success']);
$('#button-refresh').trigger('click');
}
},
error: function(xhr, ajaxOptions, thrownError) {
alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
}
});
}
}, 500);
});
控制檯錯誤是
POST https://example.com/admin/index.php? route=common/filemanager/upload&token=jyHPuiTt1DjdemKjNWUbeZqOtHHj4Dxw 404 (Not Found)
多次嘗試在調試時讓我的託管服務提供商阻止我IP地址出於安全原因。如何使ajax請求成爲威脅,並且我的託管提供商採取的安全措施是否會導致錯誤?其實我可以從我的瀏覽器的網址從Ajax調用
你得到什麼錯誤? – Dileep
但服務器上的文件也被命名爲'index.php'或者有一個名爲'index.php'的文件?你可以發佈「提醒」錯誤消息嗎? – Chris
@Dileep Chris錯誤與上述完全相同 – facilitator