Index: phpdoc/de/functions/pfpro.xml
diff -u phpdoc/de/functions/pfpro.xml:1.3 phpdoc/de/functions/pfpro.xml:1.4
--- phpdoc/de/functions/pfpro.xml:1.3 Wed Nov 14 17:07:53 2001
+++ phpdoc/de/functions/pfpro.xml Thu Nov 15 06:32:10 2001
@@ -1,55 +1,63 @@
+
+
+
- Verisign Payflow Pro functions
+ Verisign Payflow Pro FunktionenVerisign Payflow Pro
- This extension allows you to process credit cards and other financial
- transactions using Verisign Payment Services, formerly known as Signio
+ Diese Erweiterung macht es möglich, Geschäftsabwicklungen via Kreditkarte
+ und andere Finanztransaktionen über die Verisign Payment Services, auch
+ als Signio bekannt abzuwickeln
(&url.pfpro;).
- These functions are only available if PHP has been compiled with the
- option. You will
- require the appropriate SDK for your platform, which may be
- downloaded from within the manager
- interface once you have registered.
+ Diese Funktionen sind nur verfügbar, wenn PHP mit der Option
+ comipliert wurde.
+ Dazu ist das SDK nötig, dass im
+ Management-Interface heruntergeladen werden kann, sobald man sich
+ registriert hat. Sollte diese Erweiterung in einem SSL-Webserver oder
+ zusammen mit anderen SSL-Komponenten verwendet werden, muss die
+ Beta-Version des SDK verwendet werden.
- Once you have downloaded the SDK you should copy the files from
- the lib directory of the
- distribution. Copy the header file pfpro.h
- to /usr/local/include
- and the library file libpfpro.so to
- /usr/local/lib.
+ Sobald das SDK heruntergeladen wurde, sollte man die Dateien aus dem
+ lib-Verzeichnis der Distribution
+ kopieren. Die Header-Datei pfpro.h sollte in das
+ Verzeichnis /usr/local/include,
+ die Bibliothek libpfpro.so in das Verzeichnis
+ /usr/local/lib kopiert werden.
- When using these functions, you may omit calls to
- pfpro_init and pfpro_cleanup
- as this extension will do so automatically if required. However the
- functions are still available in case you are processing a number of
- transactions and require fine control over the library.
- You may perform any number
- of transactions using pfpro_process between the two.
+ Wenn diese Funktionen genutzt werden, ist es mögliche, auf Aufrufe von
+ pfpro_init und pfpro_cleanup
+ zu verzichten, da diese automatisch aufgerufen werden, wenn sie benötigt
+ werden. Diese Funktionen sind jedoch nachwievor für Sonderfälle vorhanden,
+ z.B. dass viele Transaktionen auf einmal ausgeführt werden sollen, oder
+ genaue Kontrolle über die Biblitohek benötigt wird. Mehrere Transaktionen
+ zwischen diesen beiden Funktionen können mittels der
+ pfpro_process-Funktion ausgeführt werden.
- These functions have been added in PHP 4.0.2.
+ Diese Funktionen sind seit PHP 4.0.2 verfügbar.
- These functions only provide a link to Verisign Payment Services. Be sure
- to read the Payflow Pro Developers Guide for full details of the required
- parameters.
+ Diese Funktionen stellen nur eine Schnittstelle zu den Verisign Payment
+ Services dar. Details über die nötigen Paramter sind in dem Dokument
+ Payflow Pro Developers Guide zu finden, welches bei Verisign erhältlich
+ ist.
pfpro_init
- Initialises the Payflow Pro library
+ Initialisiert die Payflow Pro Bibliothek
- Description
+ Beschreibungvoid pfpro_init
@@ -57,10 +65,10 @@
- pfpro_init is used to initialise
- the Payflow Pro library. You may omit this call, in which case
- this extension will automatically call pfpro_init
- before the first transaction.
+ pfpro_init wird benutzt, um die Payflow Pro
+ Bibliothek zu initialisieren. Auf einen Aufruf dieser Funktion kann
+ verzichtet werden, da pfpro_init automatisch vor
+ der ersten Transaktion aufgerufen wird.
See also pfpro_cleanup.
@@ -71,10 +79,10 @@
pfpro_cleanup
- Shuts down the Payflow Pro library
+ Schliesst Payflow Pro Bibliothek
- Description
+ Beschreibungvoid pfpro_cleanup
@@ -82,15 +90,14 @@
- pfpro_cleanup is used to shutdown the
- Payflow Pro library cleanly. It should be called after you
- have processed any transactions and before the end of your script.
- However you may omit this call, in which case this
- extension will automatically call pfpro_cleanup
- after your script terminates.
+ pfpro_cleanup veranlasst eine saubere Schliessung
+ der Payflow Pro-Bibliothek. Auf einen Aufruf dieser Funktion kann
+ verzichtet werden, da die Erweiterung automatisch ein
+ pfpro_cleanup ausführen wird, nachdem das Script
+ beendet wurde.
- See also pfpro_init.
+ Siehe auch pfpro_init.
@@ -98,10 +105,10 @@
pfpro_process
- Process a transaction with Payflow Pro
+ Führt eine Transaktion mit Payflow Pro aus
- Description
+ Beschreibungarray pfpro_process
@@ -131,51 +138,50 @@
- Returns: An associative array containing the response
+ Gibt einen assoziativen Array, der die Antwort enthält zurück.
- pfpro_process processes a transaction
- with Payflow Pro. The first parameter is an associative
- array containing keys and values that will be encoded and
- passed to the processor.
+ pfpro_process führt eine Transaktion mir Payflow Pro
+ aus. Der erste Parameter ist ein assoziativer Array, der die Schlüssel und
+ Werte enthält. Diese werden kodiert und an den PFPro-Prozessor
+ weitergegeben.
- The second parameter is optional and specifies the host
- to connect to. By default this is "test.signio.com", so
- you will certainly want to change this to "connect.signio.com"
- in order to process live transactions.
+ Der zweite Parameter ist optional und gibt den Host an, zu dem das
+ Script sich verbinden soll. Voreingestellt ist "test.signio.com",
+ normalerweise sollte dies in "connect.signio.com" geändert werden,
+ um Transaktionen durchzuführen.
- The third parameter specifies the port to connect on. It
- defaults to 443, the standard SSL port.
+ Der dritte Parameter gibt den Port an, auf den das Script sicher verbinden
+ soll. Voreingstellt ist 443, der Standard-SSL-Port.
- The fourth parameter specifies the timeout to be used, in seconds.
- This defaults to 30 seconds. Note that this timeout appears to only
- begin once a link to the processor has been established and so your
- script could potentially continue for a very long time in the event
- of DNS or network problems.
+ Der vierte Parameter gibt den Timeout-Wert in Sekunden an. Voreinstellt
+ ist der Wert 30 Sekunden. Dieser Timeout gilt jedoch nur zu Beginn des
+ Scripts, also kann es durchaus sehr lange dauern, wenn ein Netzwerkproblem
+ auftritt, nachdem die Verbindung erfolgreich hergestellt wurde.
- The fifth parameter, if required, specifies the hostname of your
- SSL proxy. The sixth parameter specifies the port to use.
+ Der fünfte Parameter gibt den SSL-Proxy an, falls dieser benötigt wird.
+ Der sechste Parameter gibt den Port des Proxys an.
- The seventh and eighth parameters specify the logon identity
- and password to use on the proxy.
+ Der siebte und der achte Parameter geben den Login-Namen und das
+ Login-Passwort an.
- The function returns an associative array of the keys and values
- in the response.
+ Die Funktion gibt einen assoziativen Array der Schlüssel und
+ Werte zurück.
- Be sure to read the Payflow Pro Developers Guide for full details
- of the required parameters.
+ Bitte lesen sie die Payflow Pro Entwicklerdokumentation für alle Details
+ zu den erforderlichen Parametern.
- Payflow Pro example
+ Payflow Pro Beispiel
<?php
@@ -218,10 +224,10 @@
pfpro_process_raw
- Process a raw transaction with Payflow Pro
+ Führt eine rohe Transaktion mit Payflow Pro aus
- Description
+ Beschreibungstring pfpro_process_raw
@@ -250,29 +256,29 @@
- Returns: A string containing the response.
+ Gibt die Antwort in einem String zurück.
- pfpro_process_raw processes a raw transaction
- string with Payflow Pro. You should really use
- pfpro_process instead, as the encoding
- rules of these transactions are non-standard.
+ pfpro_process_raw
+ führt eine rohe Transaktion mit Payflow Pro durch. Es sollte jedoch auf
+ jeden Fall pfpro_process verwendet werden, da sonst
+ keinerlei Normung vorliegt.
- The first parameter in this case is a string containing the raw
- transaction request. All other parameters are the same as with
- pfpro_process. The return value is a string
- containing the raw response.
+ Der erste Parameter ist ein String, der die rohe Transaktionsanfrage
+ enthält. Alle anderen Parameter sind die Selben wie bei
+ pfpro_process. Der Rückgabewert ist ein String,
+ der die rohe Antwort enthält.
- Be sure to read the Payflow Pro Developers Guide for full details
- of the required parameters and encoding rules. You would be
- well advised to use pfpro_process instead.
+ Bitte lesen sie die Payflow Pro Entwicklerdokumentation für alle Details
+ zu den erforderlichen Parametern. Es wird empfohlen, die
+ pfpro_process zu verwenden.
- Payflow Pro raw example
+ Payflow Pro Beispiel für den Raw-Modus
<?php
@@ -298,10 +304,11 @@
pfpro_version
- Returns the version of the Payflow Pro software
+ Gibt die Versionsinformationen der Payflow Pro Software
+ zurück
- Description
+ Beschreibungstring pfpro_version
@@ -309,8 +316,8 @@
- pfpro_version returns the version string
- of the Payflow Pro library. At the time of writing, this was L211.
+ pfpro_version gibt die Versionsinformationen der
+ Payflow Pro Bibliothek zurück.
@@ -332,4 +339,7 @@
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
-->