looking at the login page, there are still instances of the virtual function in place.
lines 7 - 12:
<?php virtual('/Connections/Bombase.php'); ?>
<?php virtual("/webassist/form_validations/wavt_scripts_php.php"); ?>
<?php virtual("/webassist/form_validations/wavt_validatedform_php.php"); ?>
<?php require_once('../Connections/Bombase.php'); ?>
<?php virtual( "/webassist/security_assist/helper_php.php" ); ?>
<?php require_once( "../webassist/security_assist/helper_php.php" ); ?>
I changed that to:
<?php require_once("../webassist/form_validations/wavt_scripts_php.php"); ?>
<?php require_once("../webassist/form_validations/wavt_validatedform_php.php"); ?>
<?php require_once('../Connections/Bombase.php'); ?>
<?php require_once( "../webassist/security_assist/helper_php.php" ); ?>
to get the login page working.
the pages will need to be recreated after changing the site preferences to use Document relative links instead of site relative links.


