SuperMario630
New member
I moved my forums to a new host, basically looking at these instructions:
In short, I copied the forums directory and uploaded it to the new server, and backed up the data base and imported it on the new server. I also updated the config.php file with the new values.
The domain and URL have remained the same, but what has changed is that I went from an Apache server to Nginx.
Here is the issue I'm facing. The forum itself appears to be displaying data okay, but it's currently set to inactive. Whenever I try to access the admin page, I get stuck in a 301 redirect loop.
This is my Nginx routing rule:
Has anyone faced a similar issue?
How to Move XenForo From One Host or Server to Another
A step by step guide, to show how to properly migrate a XenForo forum to a new host with no loss of data and a minimum downtime.
xfpoint.com
In short, I copied the forums directory and uploaded it to the new server, and backed up the data base and imported it on the new server. I also updated the config.php file with the new values.
The domain and URL have remained the same, but what has changed is that I went from an Apache server to Nginx.
Here is the issue I'm facing. The forum itself appears to be displaying data okay, but it's currently set to inactive. Whenever I try to access the admin page, I get stuck in a 301 redirect loop.
This is my Nginx routing rule:
location /community/ {
try_files $uri $uri/ /community/index.php?$uri&$args;
index index.php index.html;
}
Has anyone faced a similar issue?