hallo, danke für die schnelle Antwort.
Habe mich genau an die Anleitung gehalten, kann auch im Admin alles beinstellen, bekomme auch die Meldung das moeybookers ok ist.
habe nur die includes/classes/payment.php am schluß abgeändert wegen paypal schaut nun so aus
// PayPal Express Giropay
function giropay_process() {
if (is_array($this->modules)) {
if (is_object($GLOBALS[$this->selected_module]) && ($GLOBALS[$this->selected_module]->enabled) ) {
return $GLOBALS[$this->selected_module]->giropay_process();
}
}
}
function get_error() {
if (is_array($this->modules)) {
if (is_object($GLOBALS[$this->selected_module]) && ($GLOBALS[$this->selected_module]->enabled) ) {
return $GLOBALS[$this->selected_module]->get_error();
}
}
}
function iframeAction() {
if (is_array($this->modules)) {
if (is_object($GLOBALS[$this->selected_module]) && ($GLOBALS[$this->selected_module]->enabled) ) {
return $GLOBALS[$this->selected_module]->iframeAction();
}
}
}
}
?>
kann da der Fehler liegen?
|