Ben bir Lighttpd
web sunucu üzerinde PHP ile bir jQuery ajax isteği tespit ile bazı sorun yaşıyorum. İşte aşağıdaki kod (MAMP ve Apache üzerinde çalışıyor) bulunuyor:
if (isset($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') {
// ajax (not recognized on lighttpd server)
echo json_encode(array('success'=>1));
}
else {
// not ajax
}
Ben belki doğru ayarlanmış değil belli bir lighttpd yapılandırma var sanıyordum, ama tanınan bir şey görmedik. Herkes bu gibi bir konuda herhangi bir deneyimi var mı?
Teşekkürler!