Problem in logging in as admin

My first recommendation would be to delete or rename your .htaccess file. That file is what contains the guts of WordPress’ redirection engine. And that’s also the only thing that could be redirecting from the login. WordPress redirects virtual URLs to http://blog.url/index.php so that the blog can serve up content. But the admin dashboard and … Read more

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 … Read more