Headers already sent by

Well, there is some output in /forums/vb/search/searchcontroller/version.php:91. An echo, an empty line, an UTF-8 BOM or something similar.

PHP sends the response headers before the output starts, and it sends those headers just once. So you cannot send a session header later. That’s what the error message is telling you.

Remove the early output, and it’ll work again.