XF 2.1 Cannot save any changes in ACP

Mr Lucky

Well-known member
On my test site (which is a copy of my current live installation) I cannot save any changes in ACP.

On Safari the page just refreshes without the change. On Firefox I get a message:

Security error occurred. Please press back, refresh the page, and try again.

On the live site everything seems fine.

Can anyone please help? Thanks
 
Did you add this to the bottom of your src/config.php file?

PHP:
$config['cookie'] = array(
'prefix' => 'test_',
'path' => '/',
'domain' => ''
);
 
No I just have this: (which has been working up until now)

Code:
$config['cookie']['prefix'] = 'xf2_';
$config['cookie']['path'] = '/';
$config['cookie']['domain'] = '';
 
Top Bottom