İşte iki sayfa: test.php ve testserver.php.
test.php
<script src="scripts/jq.js" type="text/javascript"></script>
<script>
$(function() {
$.ajax({url:"testserver.php",
success:function() {
alert("Success");
},
error:function() {
alert("Error");
},
dataType:"json",
type:"get"
}
)})
</script>
testserver.php
<?php
$arr = array("element1",
"element2",
array("element31","element32"));
$arr['name'] = "response";
echo json_encode($arr);
?>
Şimdi benim sorunum: bu dosyaların her ikisi de aynı sunucuda (localhost veya web sunucusu) olduğunda, çalışır ve alert("Success")
çağrılır; Farklı sunucularda ise, yani web sunucusunda testserver.php ve localhost üzerinde test.php, çalışmıyor ve alert("Error")
çalışıyor. Ajax içindeki URL http://domain.com/path/to/file/testserver.php olarak değiştirilse bile