Thanks again Dave, that did the trick.
But after changing the name and path in init.php, forum did not run, so I took a look at error_log and see this error:
HTML Code:
PHP Parse error: syntax error, unexpected 'Content' (T_STRING) in /home/***/public_html/forum/includes/init.php on line 722
The line 722 is
PHP Code:
<head>
<script type='text/javascript' src='//connect.facebook.net/en_US/sdk.js'></script>
<script type='text/javascript'>
FB.init({
appId : '{$vbulletin->options['facebookappid']}',
version : 'v2.2',
status : false,
cookie : true,
xfbml : false
});
FB.getLoginStatus(function(response)
{
window.top.location.reload(true);
});
</script>
</head>
<body></body>
</html>
The first line is line 722 and the last line is 740
I commented these tags and now the forum runs well, logged in and everything is well.
What do these lines do? Are they related to facebook log in? And only facebook log in?