我已經試過這是我以前的問題的答案,但它不工作,它只是報告500內部服務器錯誤和螢火不會報告任何錯誤的詳細信息:請求通過Ajax
(function worker() {
$.ajax({
url: 'buildmarkers.inc.php',
type: 'POST',
success: function(data) {
$('.result').html(data);
},
complete: function() {
// Schedule the next request when the current one's complete
setTimeout(worker, 30000);
}
});
})();
當我嘗試這樣它是工作:
<?php include('buildmarkers.inc.php')?>
錯誤日誌將提供一個巨大的線索。 –
你可以添加你的php代碼嗎? – user3284463