So I want to change the location of my forum from www.gamerbb.net/forum to www.gamerbb.net - I tried moving all of the files from /forum into the public_html but it gives me an error. Is there more to it than what I'm doing?
Before you move, go to options in admin.php and make sure the board information is up to date.
Also, moving doesn't include invisible files sometimes,
.htaccess == invisible
Make sure it's moved as well.
And finally, make certain the internal_data/ and data/ dirs are still chmodded 777
How can I move my installation to a different directory?
Update the Board URL in the ACP -> Options -> Basic Board Information and move the files to the new directory. You may need to restart the server for the change to take effect.
http://xenforo.com/community/threads/frequently-asked-questions.5183/#post-180455
Which error are you getting?
Indeed, this works: http://www.gamerbb.net/index.php
This works: http://www.gamerbb.net/index.php?login/
Have you removed the .htaccess file?
Without that friendly URLs won't work.
# Mod_security can interfere with uploading of content such as attachments. If you
# cannot attach files, remove the "#" from the lines below.
#<IfModule mod_security.c>
# SecFilterEngine Off
# SecFilterScanPOST Off
#</IfModule>
ErrorDocument 401 default
ErrorDocument 403 default
ErrorDocument 404 default
ErrorDocument 500 default
<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 /xenforo
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^(data|js|styles|install) - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
</IfModule>
We use essential cookies to make this site work, and optional cookies to enhance your experience.