You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: application/views/admin/de/fcPayOne_lang.php
+2-2
Original file line number
Diff line number
Diff line change
@@ -495,8 +495,8 @@
495
495
'FCPO_TRANSACTIONREDIRECTMETHOD_CRONJOB' => 'Verzögert mit Cronjob (Übertragungssicherheit)',
496
496
'FCPO_HELP_TRANSACTIONREDIRECTMETHOD' => 'Wählen Sie die Methode wie Transaktionsstatusmeldungen weitergeleitet werden. Ihnen stehen zur Auswahl:<br><b>Direkte Weiterleitung:</b><br>Bei der direkten Weiterleitung wird die Statusmeldung direkt an die konfigurierten Ziele weitergeleitet. Sie bietet eine hohe Weiterleitungsgeschwindigkeit und eine moderate Übertragungssicherheit.<br><b>Verzögert mit Cronjob:</b><br>Diese Methode leitet die Statusmeldung nicht direkt weiter, sondern sammelt die eingehenden Aufrufe und leitet diese erst durch einen Cronjobaufruf an die Ziele weiter. Diese Methode bietet vor allem eine hohe Übertragungssicherheit. Die Weiterleitungsgeschwindigkeit hängt von der Serverkonfiguration ab. Bitte konsultieren Sie das <a href="">Handbuch</a> um zu erfahren wie Sie diesen Modus effizient einrichten',
'FCPO_TRANSACTIONREDIRECT_TIMEOUT' => 'Zeitlimit in ms bei Direktweiterleitungen',
499
-
'FCPO_HELP_TRANSACTIONREDIRECT_TIMEOUT' => 'Um eine unterbrechungsfreie Weiterleitung zu ermöglichen werden Statusmeldungen im Modus "Direkte Weiterleitung" mit einem Zeitlimit versendet. Abhängig von ihrem Serversetup kann es notwendig sein, dass Sie einen höheren Wert als die Voreingstellten 100ms benötigen.',
498
+
'FCPO_TRANSACTIONREDIRECT_TIMEOUT' => 'Zeitlimit in Sekunden bei Direktweiterleitungen',
499
+
'FCPO_HELP_TRANSACTIONREDIRECT_TIMEOUT' => 'Um eine unterbrechungsfreie Weiterleitung zu ermöglichen werden Statusmeldungen im Modus "Direkte Weiterleitung" mit einem Zeitlimit versendet. Abhängig von ihrem Serversetup kann es notwendig sein, dass Sie einen höheren Wert als die Voreingstellten 100s benötigen.',
Copy file name to clipboardexpand all lines: application/views/admin/en/fcPayOne_lang.php
+2-2
Original file line number
Diff line number
Diff line change
@@ -504,8 +504,8 @@
504
504
'FCPO_TRANSACTIONREDIRECTMETHOD_CRONJOB' => 'Delayed by Cronjob (Secure transaction)',
505
505
'FCPO_HELP_TRANSACTIONREDIRECTMETHOD' => 'Choose the method how transaction redirects will be handled. There are two choices:<br><b>Direct redirect:</b><br>Using this method will directly redirect the transaction after receiving it. This mode offers a high redirection speed and a moderate transaction security.<br><b>Delayed by Cronjob:</b><br>Instead of directly redirecting the statusmessage, this method collects incoming messages and will redirect them aftery calling a cronjob. This mode offers a very high transaction security. The speed of redirecting statusmessages depends on the setup of your server. Please visit the <a href="">manual</a> for further information for setting this up efficiantly.',
506
506
'FCPO_TRANSACTIONREDIRECTMETHOD' => 'Method of statusmessage redirecting',
507
-
'FCPO_TRANSACTIONREDIRECT_TIMEOUT' => 'Timeout for direct redirects',
508
-
'FCPO_HELP_TRANSACTIONREDIRECT_TIMEOUT' => 'For offering direct redirects without any interruptions, there is a need for having a timout for mode "Direct redirects". Depending on the setup of your server it can be nessessary to have a higher value then 100ms default.',
507
+
'FCPO_TRANSACTIONREDIRECT_TIMEOUT' => 'Timeout in seconds for direct redirects',
508
+
'FCPO_HELP_TRANSACTIONREDIRECT_TIMEOUT' => 'For offering direct redirects without any interruptions, there is a need for having a timout for mode "Direct redirects". Depending on the setup of your server it can be nessessary to have a higher value then 100s default.',
509
509
'FCPO_FORWARD_REDIRECTS' => 'Transaction status redirects',
Copy file name to clipboardexpand all lines: core/fcpayone_events.php
+5-3
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ class fcpayone_events
58
58
publicstatic$sQueryTableFcporequestlog = "
59
59
CREATE TABLE fcporequestlog (
60
60
OXID int(11) NOT NULL AUTO_INCREMENT,
61
-
FCPO_REFNR int(11) NOT NULL DEFAULT '0',
61
+
FCPO_REFNR varchar(32) NOT NULL DEFAULT '0',
62
62
FCPO_REQUESTTYPE varchar(32) NOT NULL DEFAULT '',
63
63
FCPO_RESPONSESTATUS varchar(32) NOT NULL DEFAULT '',
64
64
FCPO_REQUEST text NOT NULL,
@@ -86,7 +86,7 @@ class fcpayone_events
86
86
FCPO_MODE varchar(8) NOT NULL DEFAULT '',
87
87
FCPO_PRICE double NOT NULL DEFAULT '0',
88
88
FCPO_TXID int(11) NOT NULL DEFAULT '0',
89
-
FCPO_REFERENCE int(11) NOT NULL DEFAULT '0',
89
+
FCPO_REFERENCE varchar(32) NOT NULL DEFAULT '0',
90
90
FCPO_SEQUENCENUMBER int(11) NOT NULL DEFAULT '0',
91
91
FCPO_COMPANY varchar(255) NOT NULL DEFAULT '',
92
92
FCPO_FIRSTNAME varchar(255) NOT NULL DEFAULT '',
@@ -347,6 +347,7 @@ class fcpayone_events
347
347
publicstatic$sQueryAlterKlarnaCampaigns = "ALTER TABLE `fcpoklarnacampaigns` ADD `FCPAYMENTID` CHAR(32) NOT NULL AFTER `FCPO_CAMPAIGN_CURRENCY`, ADD INDEX (`FCPAYMENTID`);";
0 commit comments