CodeIgniter Forums
Issues with redirect() - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Issues with redirect() (/showthread.php?tid=52666)



Issues with redirect() - El Forum - 06-20-2012

[eluser]reepher[/eluser]
"This is more of a PSA in the hope that anybody with the same issue doesn't waste half a day like I did"

I recently had an issue that prevented any function using redirect() to work correctly. I would only get a blank page. No errors in Apache, PHP, codeigniter ... just a blank page. I chased down the usual suspects: proper setting in the config file, whitespace, server time, cookies set properly and yielded nothing. I finally figured out that pagespeed had been loaded. Disabling this chunk of junk fixed the issue.




Issues with redirect() - El Forum - 06-21-2012

[eluser]CodeIgniteMe[/eluser]
Where can I find "pagespeed"? What is it? how do I disable that chunk of junk? Thanks Smile


Issues with redirect() - El Forum - 06-21-2012

[eluser]reepher[/eluser]
Pagespeed is a site optimization plugin. https://developers.google.com/speed/pagespeed/ I had mod_pagespeed for Apache loaded for a different project and it caused issues with redirect().




Issues with redirect() - El Forum - 06-21-2012

[eluser]CodeIgniteMe[/eluser]
Thanks for the link! Will study about it later.