Drupal fails to redirect -


so i'm having bit of problem drupal site. set on localhost , working fine. upload server. , of page works fine, redirects fails. when i'm registered , press logout goes mypage/logout, there remains blank page. same think happens when try search. loads blank page. if go mypagae/node/search-term works. idea may try? if it's here site: http://staging.bringler.com/.

btw. tryied turning on error reporting adding

error_reporting(e_all); ini_set('display_errors', true); ini_set('display_startup_errors', true); 

in index.php no effect.

edit: checked error logs in apache found nothing unusual...

edit2: notice there problem that:

warning: cannot modify header information - headers sent (output started @ /var/www/bringler/modules/menu/menu.module:1) in /var/www/bringler/includes/common.inc on line 153. 

i offten see warnings that...

wow found solution!

the problem didnt have

;output_buffering = on 

uncommented on server. added

<?php ob_start(); ?> 

to bootstrap.inc , works! epic!


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -