Bu sorular joomla bit özgüdür.
I / şablon / MY_TEMPLATE / error.php de özel hata sayfası error.php oluşturduk. Hata kodları ve görüntüler belirlerim her http kodu için farklı mesaj için Bu dosya denetler (I $ this-> hata> kodu == '404 'ile kontrol). Normalde bu iyi çalışıyor.
Ben ajax kullanıyorum Şimdi zaman soru, nasıl aynı şeyi işlemek gerekir? Bir hata oluşursa ben bir ajax arama yaptığınızda, geri http durum kodu alacağı ve yanıt error.php dosya çıktı. Ben hatası alıyorum ben buna mesajları görüntülemek hangi, uygun hata kodları ile error.php (özel hata sayfası) kullanıcıyı yönlendirmek istiyorum!
Scenario : - I am requesting an ajax call to a component with a task (com_greatsuff), which executes some webservice calls to get list of stuff based on itemcode provided. If the itemcode is not found on webservice it woud return 404 Error.(There are many other custom error codes). If it was not an ajax call, it works good as i raise error(JError::raiseError), and displays custom error page. But on ajax call, it will return http status(404) but i need to redirect from javascript with the proper http header. Thanks, Tanmay