Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Cannot modify header information - headers already sent, Why its happening
Headers already sent by PHP

I got the following error message on my wordpress dashboard.

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /homez.152/mamouman/www/wp-content/themes/arthur/functions.php:47) in /homez.152/mamouman/www/wp-content/themes/modularity/functions/admin-js.php on line 2`

Here is the content that i just added in my functions.php file

add_filter('wp_nav_menu_items','add_search_box', 10, 2);
function add_search_box($items, $args) {

    ob_start();
    get_search_form();
    $searchform = ob_get_contents();
    ob_end_clean();

    $items .= '<li>' . $searchform . '</li>';
return $items;
}

And here is my admin-js.php.

share|improve this question
you can't link to a PHP file that is hosted directly, we can't see the source code for it. – kennypu Dec 21 '12 at 21:40
Thanks kennypu, ok I have changed the URL to a temp upload. – Arthur Mamou-Mani Dec 21 '12 at 21:41

marked as duplicate by hakre, tereško, Jocelyn, Peter O., Stony Dec 24 '12 at 8:18

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

The problem was simple to solve: ?> in functions.php had a space at its end.

share|improve this answer
1  
Leave that (the last closing ?> at the end of the file) out, then this can not happen. It's a typical mistake. See PHP Closing Tag and Why do some scripts omit the closing php tag '?>'? – hakre Dec 21 '12 at 23:12

Not the answer you're looking for? Browse other questions tagged or ask your own question.