This is my first time installing vba in the root while my forums are located at /vb3, normally I keep it all in the same folder.
first it was my css not loading, but upon inspecting the error console i get all kinds of errors.
Code:
Failed to load resource: the server responded with a status of 404 (Not Found)
http://localhost/clientscript/yui/connection/connection-min.js?v=3810b1 Failed to load resource: the server responded with a status of 404 (Not Found)
http://localhost/clientscript/vbulletin_global.js?v=3810b1 Failed to load resource: the server responded with a status of 404 (Not Found)
http://localhost/clientscript/vbulletin_menu.js?v=3810b1 Failed to load resource: the server responded with a status of 404 (Not Found)
vbulletin_lightbox.js?v=3810b1:18 Uncaught ReferenceError: vBulletin is not defined
index.php:146 Uncaught ReferenceError: vbmenu_register is not defined
index.php:154 Uncaught ReferenceError: vbmenu_register is not defined
index.php:157 Uncaught ReferenceError: vbmenu_register is not defined
index.php:686 Uncaught ReferenceError: vBulletin is not defined
index.php:1523 Uncaught ReferenceError: vBulletin_init is not defined
and that is because my clientscript folder is in fact located at localhost/vb3/clientscript
my index file I have set the proper folder:
Code:
$forumpath = '/var/www/html/vb3';
so I dont understand what else would be causing all these errors. I had to write a quick plugin just to get the css to work
Code:
$style['css'] = str_replace('clientscript', $vbulletin->options['bburl'].'/clientscript', $style['css']);