嗨,我按此按钮时出现500个内部服务器错误:
$(".btn-email").on('click', function() {
swal('Waiting','Please wait, sending email now','info');
$.getJSON("/api/addvoter",{"email":$(".voter-email").val(),"vote_id":$(".vote-id").val()},function(result){
if(result.success == 1){
swal("Good job!", "Send an email to the voter successfully!", "success");
$(".voter-email").val("");
}else{
sweetAlert("Oops...", result.content, "error");
}
});
});
我正在使用here的开源Blockvote系统
什么可能导致此错误?
答案 0 :(得分:0)
API损坏,请先修复
答案 1 :(得分:0)
如果有人遇到相同的问题,则主要问题在于数据库版本本身和根url。在Apache配置中需要maria db和正确的根URL。