1
For some reason my pical module is pulling a different URL then the rest of my modules and I can't figure out where it is.
When calling forms (as in submitting an event or jumping to a date) it errors out because it is calling
http://members.domain.com/members/modules/pical....
instead of
http://members.domain.com/modules/pical.....
but this is only in pical? is this a global issue or am I missing something in the pical configuration.
In my mainfile.php I have it defined as follows when it does not work:
define('XOOPS_ROOT_PATH', '/members');
define('XOOPS_URL', 'http://members.domain.com');
If I change it to the following it works... but then login is wacked because they login to members.domain.com but then need to relogin when the domain switches to
http://www.domain.com/members. HELP!!!
define('XOOPS_ROOT_PATH', '/members');
define('XOOPS_URL', 'http://www.domain.com/members');
Edit
I need to use the subdomain though because the host of our main site needs to call it up using a cname call in DNS.