Refference hack,
https://vborg.vbsupport.ru/showthrea...threadid=35681
I installed this on vb 2.3.2 as everything more or less installed fine except for this..
Code:
Warning: Cannot modify header information - headers already sent by (output started at /home/usr/public_html/forum/admin/group_install.php:9) in /home/usr/public_html/forum/admin/global.php on line 141
Warning: Cannot modify header information - headers already sent by (output started at /home/usr/public_html/forum/admin/group_install.php:9) in /home/usr/public_html/forum/admin/global.php on line 142
Warning: Cannot modify header information - headers already sent by (output started at /home/usr/public_html/forum/admin/group_install.php:9) in /home/usr/public_html/forum/admin/global.php on line 143
Warning: Cannot modify header information - headers already sent by (output started at /home/usr/public_html/forum/admin/group_install.php:9) in /home/usr/lxg/public_html/forum/admin/global.php on line 144
if you look at the admin/global.php file, it says the following code
Code:
if ($nocacheheaders and !$noheader) {
// no caching
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past (line 141 here)
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // always modified
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Pragma: no-cache"); // HTTP/1.0
}
any ideas?