PDA

View Full Version : how to remove headers that vb sends out


somerfeld
04-18-2002, 04:24 AM
my headers are already sent out. This makes problems

I cannot use cookies the way vb uses them and any header being sent does not work.

Admin
04-18-2002, 10:31 AM
Try sticking $noheader = 1; in the global.php's. That should stop all headers from being sent.

somerfeld
04-18-2002, 06:53 PM
now how do i solve the cookie problem :/ wheres the cookie bit?

Admin
04-18-2002, 07:19 PM
If you don't want vBulletin to set any cookies add:
return;
right after this:
function vbsetcookie($name,$value="",$permanent=1) {
in functions.php.

You're welcome.

Chris M
04-18-2002, 08:32 PM
Cool...

Thanks...

Many of our members complain about cookies...

Satan