Hi all,
I have a small self-hosted community, and am trying to move from one hosting platform to another.
I have followed the Moving to Another Server guide but I have encountered a problem I'm unsure how to get around.
Everything is moved over and I can access the front page of my community, but when I try to login to the ACP, I get this error:
[[Template core/admin/global/globalTemplate is throwing an error. This theme may be out of date. Run the support tool in the AdminCP to restore the default theme.]]
No matter what I try, I cannot get into the ACP to run the support tool.
Additionally to the above, navigating away from the homepage generates a 404 error. I suspect this might be to to do with Friendly URLS which was enabled on the old server, but because my community now operated on a new URL, I need to update something in the ACP? Config_Globals is updated with the new URL.
I'm sure there's something simple I've missed.
IPB 4.6.9
Let me know if you need any info.
Any help greatly appreciated.
Jonathan
(.htaccess file in case it helps in relation to the friendly URLs problem)
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule \.(js|css|jpeg|jpg|gif|png|ico|map)(\?|$) /404error.php [L,NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>