I've made some progress on this. in line 553 of /libraries/includes/joomla/html/html.php ... the script adds javascript to the code, however the symlink is not working. After doing some reading this appears to be a security reason.
If I replace line 553:
Code: |
$document->addScript($include);
|
with
Code: |
$document->addScript('http://www.mastersite.com'.$include);
|
I can at least push the button. But now I am at a different error. 'Joomla is not defined', found further down in installation.js.
I am sure after time I can hard code all that I need. It is in no way an elegant change to the software, but it is the beginning of a fix.
Is the master site url set in a variable somewhere in JMS?