I am now getting the following error:
Fatal error: Call to undefined function sefreltoabs() in /administrator/components/com_virtuemart/classes/ps_session.php on line 446
Line 446 of ps_session.php is this one:
$appendix = sefRelToAbs( str_replace( $prep.'&', $prep.'?', $appendix ) );
The problem is caused by this piece of code in notify.php:
if (file_exists( $mosConfig_absolute_path.'/components/com_sef/sef.php' ))
{require_once( $mosConfig_absolute_path.'/components/com_sef/sef.php' );}
else
{require_once( $mosConfig_absolute_path.'/includes/sef.php' );}
When I comment out the piece of code above, I don' get this error but the order confirmation mail is not sent. When I leave the code as is, the mail is sent but I get the error above (I can disregard it since the mail is sent, but I don't want to have errors like this one).
Any help would be greatly appreciated.
Many thanks,
Yiannis