not sure if this is the correct area but...
I moved hosting and now I get an error in upsxml.php in admin trying to open the shipping modules page (checkout works). the error has to do with this line:
require ('includes/classes/xmldocument.php');
if I change it to:
require ('../includes/classes/xmldocument.php');
it works but then checkout does not.
I know I'm missing something simple. I tried changing the line to:
try {
require ('includes/classes/xmldocument.php');
}
catch (Exception $e) {
require ('../includes/classes/xmldocument.php');
}
any ideas?



