I have installation of Oxwall on main domain and this is how is pointing to ow_userfiles folder define('OW_DIR_ROOT', dirname(__FILE__) . DS); define('OW_DIR_USERFILES',OW_DIR_ROOT.'ow_userfiles'.DS); define('OW_URL_USERFILES', OW_URL_HOME.'ow_userfiles/');
I have another installation of Oxwall on subdomain (a.domain.com) The document folder for this installation is site2.
Again in config.php for this installation there is same code as above. I need that code to point to the folder ow_userfiles of the main domain not to one in the site2 folder. Basically , trying to get subdomain installation to use same ow_userfiles folder as main domain installation.