Pascal Martin
Member
Hi,
On XF1 the config.php file contains the cookie configuration that was editable in the config.php file.
How to do with XF2, because adding the following line does not change my subdomain problem.
My configuration is:
www.mydomain.com
forum.mydomain.com
I need to know under www.mydomain.com which member is connected to XF2.
Thanks
On XF1 the config.php file contains the cookie configuration that was editable in the config.php file.
Code:
// COOKIES WILL WORK ON ANY SUBDOMAIN OF yoursite.com, WITH OR WITHOUT www
$config['cookie'] = array(
'prefix' => 'xf_',
'path' => '/',
'domain' => '.mydomain.com'
);
How to do with XF2, because adding the following line does not change my subdomain problem.
My configuration is:
www.mydomain.com
forum.mydomain.com
I need to know under www.mydomain.com which member is connected to XF2.
Thanks