On Sat, Feb 9, 2013 at 10:08 PM, Jonathan Eagle <jeofva@xxxxxxxxxxxxx>wrote: > My 'display_errors' is "ON" and my 'error_reporting' is "22517". I'm > not sure what that means but it looks as if I should be getting error > messages somewhere. > > Jonathan > > Most likely they end up in the logs instead of the screen. Try check the logs (on linux, they are usually in /var/log/apache). A general note (this also applies to tedd): The HTTP specification notes that the Location header should be followed by an absolute URI only. Even though probably every browser accepts relative URIs too, it's incorrect. You should replace it with http://myserver.com/login.php, or preferable, https://myserver.com/login.php . - Matijn