Cannot modify header information - Versão de Impressão +- Forum Pplware (http://forum.pplware.com) +-- Fórum: Mais Tech (/forumdisplay.php?fid=11) +--- Fórum: Programação e Web (/forumdisplay.php?fid=16) +--- Tópico: Cannot modify header information (/showthread.php?tid=9882) |
Cannot modify header information - nsmp - 06-10-2011 08:48 Alguém me pode ajudar? Aparece-me este erro! Cannot modify header information - headers already sent by (output started at /home/s001332/public_html/....com/wp-config.php:1) in /home/s001332/public_html/....com/wp-includes/pluggable.php on line 934 line 934: header("Location: $location", true, $status); Muito obrigado RE: Cannot modify header information - Bruno Bernardino - 06-10-2011 09:36 no ficheiro wp-config.php, apaga tudo o que estiver antes de "<?php" (se achares que não tem nada antes, coloca lá o cursor e apaga na mesma, deverá ter um caracter escondido). RE: Cannot modify header information - nsmp - 06-10-2011 09:56 Não funcionou RE: Cannot modify header information - Mettafox - 06-10-2011 15:34 Logo na primeira linha do documento escreve isto: <?php ob_start(); ?> O ob_start() irá iniciar um novo buffer para o teu header... Experimenta também o ob_flush(); (logo na primeira linha) e no final de todo o código ob_end_flush(); Mas penso que com o ob_start() irá resolver o teu problema. |