Thread: Project U-232
View Single Post
  #15  
Old 1st May 2011, 10:28
Bigjoos's Avatar
Bigjoos Bigjoos is offline
U-232 Dev
 
Join Date: May 2008
United Kingdom
Posts: 244
Default
Im not getting into a debate about if it works or not in sub domain, i know it does.

This needs modified to tell your one up from root :

Code:
$INSTALLER09['baseurl'] = 'http'.(isset($_SERVER['HTTPS']) && (bool)$_SERVER['HTTPS'] == true ? 's':'').'://'. $_SERVER['HTTP_HOST'];
To something like this :

Code:
$INSTALLER09['baseurl'] = 'http'.(isset($_SERVER['HTTPS']) && (bool)$_SERVER['HTTPS'] == true ? 's':'').'://'. $_SERVER['HTTP_HOST'].'/Subfolder';
This :

Code:
$INSTALLER09['cookie_prefix']  = ''; // This allows you to have multiple trackers, eg for demos, testing etc.
$INSTALLER09['cookie_path']    = '';   // ATTENTION: You should never need this unless the above applies eg: /tbdev
$INSTALLER09['cookie_domain']  = ''; // set to eg:  .somedomain.com or is subdomain set to: .sub.somedomain.com
Would be something like this :

Code:
$INSTALLER09['cookie_prefix'] = '/subfolder'; // This allows you to have multiple trackers, eg for demos, testing etc.
$INSTALLER09['cookie_path'] = ''; // ATTENTION: You should never need this unless the above applies eg: /tbdev
$INSTALLER09['cookie_domain'] = ''; // set to eg: .somedomain.com or is subdomain set to: .sub.somedomain.com