Scottd Posted July 2, 2011 Share Posted July 2, 2011 I'm trying to fix the 2 last errors in my first wordpress theme. When I turn debug on I get Warning: Cannot modify header information - headers already sent by functions.php line 312-315 which is $value = isset($_REQUEST[$id])?stripslashes($_REQUEST[$id]):$option['default']; update_option($id, $value); } header("Location: themes.php?page=functions.php&saved=true"); and Notice: Undefined index: default in functions.php on line 464 which is this line $$key = get_option($shortname.'_'.$key, $option['default']); Here is my entire functions.php file from my theme. http://pastebin.com/GRTz6LCn Any help is appreciated. Quote Link to comment Share on other sites More sharing options...
Pikachu2000 Posted July 2, 2011 Share Posted July 2, 2011 http://www.phpfreaks.com/forums/index.php?topic=37442.0 Quote Link to comment Share on other sites More sharing options...
Scottd Posted July 2, 2011 Author Share Posted July 2, 2011 http://www.phpfreaks.com/forums/index.php?topic=37442.0 Thanks for the link. I didn't create this theme I just added a few things to it, so I really have no idea how to fix it or even understand that link. Quote Link to comment Share on other sites More sharing options...
ManiacDan Posted July 14, 2011 Share Posted July 14, 2011 Restore the theme to its original settings, without your modifications. Does it work? If so, your modifications send data (and therefore headers) prematurely. -Dan Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.