I need to merge two versions of a site that was forked and changes have been made to both.
I have managed to get all the content, fields, nodes, views etc in the database. However they do not all display.
One of the versions uses civicrm which is installed in a separate database. For it to work it had a default db prefix.
This is causing some of the data not to load since the tables are getting the prefixes. If I remove the prefixes than civicrm does not load.
I figured I could use different settings for civicm and use he default for the rest. On my localhost environment I can not get this to work due to how drupal loads the settings.
I did a hotfix to drupal to test out my idea by changing line 327 to $uri = explode('/', $_SERVER['REQUEST_URI'] ? $_SERVER['REQUEST_URI'] : $_SERVER['REQUEST_URI']);
it originaly used script_name
That correctly gets the config files to load and my site content is showing! but I can't access civicm even though im logged in to the main site.