Witam,
Nie wiem czemu ale w moim projekcie który działa na Localhoscie a nie działa na serwerze wyświetla się błąd
  1. Błąd 310 (net::ERR_TOO_MANY_REDIRECTS): Zbyt wiele przekierowań.
Ciasteczka i wszystkie dane przeglądarki wyczyściłem ale nic to nie dało.
W indexController mam tylko:
  1. <?php
  2.  
  3. class IndexController extends Zend_Controller_Action
  4. {
  5.  
  6. public function init()
  7. {
  8. $this->view->baseUrl=$this->_request->getBaseUrl();
  9. }
  10.  
  11. public function preDispatch()
  12. {
  13.  
  14. $auth = Zend_Auth::getInstance();
  15. $this->view->identity = $auth->getIdentity();
  16. }
  17. public function indexAction()
  18. {
  19.  
  20.  
  21. $front = Zend_Controller_Front::getInstance();
  22. $bootstrap = $front->getParam('bootstrap');
  23. $resource = $bootstrap->getPluginResource('db');
  24. $dbAdapter = $resource->getDbAdapter();
  25.  
  26. $adapter = new Zend_Paginator_Adapter_DbSelect($dbAdapter->select()
  27. // Tutaj warunki zapytania itp.
  28. );
  29.  
  30.  
  31. $paginator = new Zend_Paginator($adapter);
  32. $paginator->setItemCountPerPage(6);
  33. $paginator->setCurrentPageNumber($this->_getParam('page'));
  34. $this->view->paginator = $paginator;
  35.  
  36.  
  37. }
  38.  
  39.  
  40. }


Wina leży po stronie hostingu. Problem rozwiązany. Proszę o zamknięciu lub usunięcie.
Pozdrawiam