Hi,
for those of you who are still struggling with the log file, this is how I solved the problem:
Open the file /administrator/components/com_virtuemart/classes/payment/ps_saferpay.php and look for the following function (around line 214):
function logToFile($msg) {
error_log($msg . "\r\n", 3, "/temp/saferpay.log");
}
change it to:
function logToFile($msg) {
error_log($msg . "\r\n", 3, "./temp/saferpay.log");
}
That solved the problem for me.
-- Petra