我使用ajax向服務器發送數據,它在本地主機上正常工作,但我在聯機服務器上測試代碼時返回錯誤500.
如何解決這個問題?
$('#btn_publier').click(function (e) {
var formdata = new FormData(document.getElementById('post'));
var file_data = $('#IMG_CDV').prop('files')[0];
formdata.append('file', file_data);
$.ajax({
url: '../wp-content/plugins/Carnet_voyages/publier.php',
type: 'post',
data: formdata,
dataType: 'text', // what to expect back from the PHP script, if anything
cache: false,
contentType: false,
processData: false,
success: function (result, statut) { // success est toujours en place, bien sûr !
if (result != "") {
alert(result);
location.reload();
}
},
error: function (resultat, statut, erreur) {
alert(erreur);
}
});
e.preventDefault();
});
500錯誤表示問題出在您的PHP代碼中。檢查響應文本或服務器日誌,希望會出現一個您可以診斷的錯誤。 –
通過查看客戶端代碼無法診斷服務器錯誤 – charlietfl
也應該使用適當的WordPress的ajax端點...不會進入'wp-content/plugins' – charlietfl