Ben bir kategoride videoların bir listesini doldurmak için bu standart AJAX isteği kullanan bir WordPress video oynatıcı tema hata ayıklamak çalışıyorum:
function getdata(What) {
try {
xmlhttp = window.XMLHttpRequest?new XMLHttpRequest():
new ActiveXObject("Microsoft.XMLHTTP"); }
catch (e) {}
xmlhttp.onreadystatechange = ScreenWrite;
xmlhttp.open("GET", What, true);
xmlhttp.send(null);
return false;
}
The request goes to this page, with a dynamic ID parameter:
http://www.hisfameministries.com/wp-content/themes/Video/list.php?id=44
Eğer bu sayfayı ziyaret ederseniz, liste güzel gösterir, ama canlı sitede çalıştığınızda, sunucu istenen veri ile yanıt verir, ancak bu bir 404 olduğunu söylüyor! Bu bir hata olduğundan, AJAX isteği (I varsayıyorum veya çok) sayfa üzerine veri yüklemek için başarısız olur.
Here's the live site, for reference:
http://www.hisfameministries.com/sermons/
UPDATE: Here's list.php, as requested: http://pastie.org/1270724