Quote:
Yesterday at 11:30 PM Linux said this in Post #21
I put the both files in the fourm directory
but I am getting this msg when it is open the threads page
Warning: Cannot modify header information - headers already sent by (output started at/public_html/vb/wab.php:4) in public_html/vb/admin/functions.php on line 1863
Warning: Cannot modify header information - headers already sent by (output started at /public_html/vb/wab.php:4) in /public_html/vb/admin/functions.php on line 1863
|
I fixed this problem
just turn on output buffering.
i.e. put
PHP:
--------------------------------------------------------------------------------
ob_start();
--------------------------------------------------------------------------------
at the beginning of last.php
it will looks like this
PHP:
--------------------------------------------------------------------------------
<?php
ob_start();
header("Content-type: text/vnd.wap.wml");
--------------------------------------------------------------------------------