Looking through the forums, as I am desperate for a solution. I see a long history of xenforo messing up after moving directories even after you change the information in the 'Basic Board Information'. It is a bit disappointing that this occurs. In my 15 years of forum building with vbulletin, phpbb, ipb I have never had something like this happen. I really don't want to start a new forum from scratch in the base directory as I did a lot of manual coding to get it how I wanted. Is there anyone who has any other possible insight as to why xenforo hiccups with the css/javascript when you move to a different directory? I'm running no caching at all so I'm not sure if xenforo has some secret cache that I can manually clear on the FTP or SQL database to rebuild itself.
If this helps at all this is my current .htaccess which I don't see anything wrong with off the bat. I have tried to do both #RewriteBase and RewriteBase it doesn't seem to make a difference
<IfModule mod_rewrite.c>
RewriteEngine On
#If you are having problems with the rewrite rules, remove the "#" from the
#line that begins "RewriteBase" below. You will also have to change the path
#of the rewrite to reflect the path to your XenForo installation.
RewriteBase /
#This line may be needed to enable WebDAV editing with PHP as a CGI.
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^(data/|js/|styles/|install/|favicon\.ico|crossdomain\.xml|robots\.txt) - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
</IfModule>
Edit: Decided to do a complete reinstall and build everything from the ground up. Better than keeping my community waiting I suppose.