Hi
Have a problem where, when I try to access the CP for my secondary site, the browser gets automatically re-directed to the main cp.
The sites (testing for now) are called
http://test.hvid.se (main)
http://test.hvid.nu (secondary)
The changes I have made in the main site:
index.php:
$system_path = '/www/eh16504/test_system';
$assign_to_config['site_name'] = 'test_hvid_se';
$assign_to_config['cp_url'] = 'http://test.hvid.se/admin.php';
$assign_to_config['site_url'] = 'http://test.hvid.se';admin.php:
$system_path = '/www/eh16504/test_system';
$assign_to_config['site_name'] = 'test_hvid_se';
$assign_to_config['cp_url'] = 'http://test.hvid.se/admin.php';The changes in secondary site are similar:
index.php:
$system_path = '/www/eh16504/test_system';
$assign_to_config['site_name'] = 'test_hvid_nu';
$assign_to_config['cp_url'] = 'http://test.hvid.nu/admin.php';
$assign_to_config['site_url'] = 'http://test.hvid.nu';admin.php:
$system_path = '/www/eh16504/test_system';
$assign_to_config['site_name'] = 'test_hvid_nu';
$assign_to_config['cp_url'] = 'http://test.hvid.nu/admin.php';I have tried with and without .htacces
I have tried to remove the CP path in config.php
$config['cp_url'] = "";Where did I miss?
(sites are hosted in the same account at engine hosting)