Hi Tom Long,
Ich habe das selbe Problem.
In der Anleitung sind Folgende SQL Befehle:
INSERT INTO oxpayments
(OXID
, OXACTIVE
, OXDESC
, OXADDSUM
, OXADDSUMTYPE
, OXFROMBONI
, OXFROMAMOUNT
, OXTOAMOUNT
, OXVALDESC
, OXCHECKED
, OXDESC_1
, OXVALDESC_1
, OXDESC_2
, OXVALDESC_2
, OXDESC_3
, OXVALDESC_3
, OXLONGDESC
, OXLONGDESC_1
, OXLONGDESC_2
, OXLONGDESC_3
, OXSORT
) VALUES (‘oxidpaypal’, 1, ‘PayPal’, 0, ‘abs’, 0, 0, 99999, ‘’, 0, ‘PayPal’, ‘’, ‘’, ‘’, ‘’, ‘’, ‘<div>Bei Auswahl der Zahlungsart PayPal werden Sie im nächsten Schritt zu PayPal weitergeleitet. Dort können Sie sich in Ihr PayPal-Konto einloggen oder ein neues PayPal-Konto eröffnen und die Zahlung autorisieren. Sobald Sie Ihre Daten für die Zahlung bestätigt haben, werden Sie automatisch wieder zurück in den Shop geleitet, um die Bestellung abzuschließen.</div> <div style=“margin-top: 5px”>Erst dann wird die Zahlung ausgeführt.</div>’, ‘<div>When selecting this payment method you are being redirected to PayPal where you can login into your account or open a new account. In PayPal you are able to authorize the payment. As soon you have authorized the payment, you are again redirected to our shop where you can confirm your order.</div> <div style=“margin-top: 5px”>Only after confirming the order, transfer of money takes place.</div>’, ‘’, ‘’, 0);
und
CREATE TABLE IF NOT EXISTS oepaypal_transactions
( oepaypal_id
int(11) NOT NULL auto_increment, oepaypal_transactiondata
text collate latin1_general_ci NOT NULL, PRIMARY KEY (oepaypal_id
)) ENGINE=MYISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
So wie ich verstanden habe, Logos werden per SQL Befehl eingetragen und erscheinen dann auch auf der Seite. Ist das korrekt?
Wenn ja, dann welcher Teil des o.g. Codes schreibt die Logos in die DB?