我的工作 CodeIgniter 站点在 MediaTemple 上托管时出现 500 内部服务器错误。它发生在 jQuery Ajax 调用期间。
我不知道出了什么问题。是控制器的错误还是模型的错误?我的阿贾克斯电话:
$.ajax({
url: "<?php echo site_url('invites/save_email') ?>",
type: 'POST',
data: form_data,
success: function(msg) {
window.location.href = "<?php echo site_url('invites/moreinvites')?>"
return true;
},
error: function (xhr, ajaxOptions, thrownError) {
alert(xhr.status);
alert(thrownError);
alert(xhr.responseText);
}
});
xhr.responseText 已返回给我<p>The action you have requested is not allowed.</p>
。但是,这是什么意思?