Quote:
Originally Posted by MoT3rror
This is the headers for no-cache but I wouldn't run them in a plugin or anything because vBulletin may already send them.
PHP Code:
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
|
I completely agree with you, this is why I don't want to send the headers myself, I want to change the VB option for a custom page so that the VB system will send the headers for me.
I am thinking that the option of sending or not the "no-cache" headers should be just an option in an array - like in this array:
$vbulletin->options['bburl']
instead of "bburl" it should be something like "nocache". If I set it to true:
$vbulletin->options['nocache'] = true;
then the VB system should send the no-cache headers.
What do you think ? Is the system working like this ? I am going to check the "options" array tomorrow.
The advantage of using the above system is that the headers will NOT be sent twice if they are enabled globally for the whole board.
Regards,
Razvan