Upgrading test forum locking live forum.

jmurrayhead

Well-known member
So I was upgrading my test forum to test and when I visited my live forum it gave the board closed message stating it was being upgraded. Have I lost a few marbles or is something screwy?

The folder structure is along the lines of:
|_Root
|__public_html
|____live_site
|____test_site

Also, it displayed one of my notices regarding my account being upgraded...even though that happened long ago. It never displayed for me until the upgrade.
 
Separate databases I assume?

Have you setup a cache in the library/config.php file? If so then make sure each forum uses a different prefix:

Code:
$config['cache']['frontendOptions']['cache_id_prefix'] = 'xf_';

And depending on your cache backend, you might need to specify a prefix for that. For a 'file' backend it is:

Code:
$config['cache']['backend'] = 'file';

$config['cache']['backendOptions']['file_name_prefix'] = 'xf_';
 
Top Bottom