VCS payments/de: Difference between revisions

From Joomdle
Jump to navigationJump to search
Created page with '[http://www.wobble.co.za/ Wobble] has sponsored the development of a Virtuemart patch to allow using VCS Payment Gateway with Joomdle. With it, when a course purchase is made in…'
 
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
[http://www.wobble.co.za/ Wobble] has sponsored the development of a Virtuemart patch to allow using VCS Payment Gateway with Joomdle.
[http://www.wobble.co.za/ Wobble] hat ein Virtuemart Patch entwickelt, dass es erlaubt das VCS Zahlungs-Gateway unter Joomdle zu nutzen.  


With it, when a course purchase is made in Virtuemart with the VCS payment method, the user is automatically enrolled in the relevant Moodle courses.
Mit diesem wird, nach der Zahlung eines Kurses über Virtuemart mit der VCS Zahlungsmethode, der Benutzer automatisch in diesem Moodle Kurs angemeldet.


To use it, first install the normal VCS plugin, and make sure it is working correctly for normal products.
Um dieses zu nutzen, installieren Sie zunächst das normale VCS Plugin und stellen sicher, dass es für die normalen Produkte funktioniert.


Then, download [http://sourceforge.net/projects/moodle-joomla/files/checkout.vcs.joomdle.php/download this file] and place it in '/administrator/components/com_virtuemart/html/'.
Dann laden Sie  [http://sourceforge.net/projects/moodle-joomla/files/checkout.vcs.joomdle.php/download diese Datei] herunter und speichern sie in '/administrator/components/com_virtuemart/html/'.


Then, you will need to modify the payment plugin configuration in Virtuemart. In Extra Info section, look for:
Danach müssn sie das Zahlungsmodul Plugin in Virtuemart konfigurieren. Im Abschnitt Extrainformationen suchen Sie nach:
<pre>
<pre>
<input type="hidden" name="osApprovedUrl" value="<?php $sess->purl(SECUREURL."index.php?page=checkout.vcs&order_id=". $order_id) ?>" />
<input type="hidden" name="osApprovedUrl" value="<?php $sess->purl(SECUREURL."index.php?page=checkout.vcs&order_id=". $order_id) ?>" />
</pre>
</pre>
And change by:
und ändern es zu :
<pre>
<pre>
<input type="hidden" name="osApprovedUrl" value="<?php $sess->purl(SECUREURL."index.php?page=checkout.vcs.joomdle&order_id=". $order_id) ?>" />
<input type="hidden" name="osApprovedUrl" value="<?php $sess->purl(SECUREURL."index.php?page=checkout.vcs.joomdle&order_id=". $order_id) ?>" />
</pre>
</pre>

Latest revision as of 15:58, 27 September 2010

Wobble hat ein Virtuemart Patch entwickelt, dass es erlaubt das VCS Zahlungs-Gateway unter Joomdle zu nutzen.

Mit diesem wird, nach der Zahlung eines Kurses über Virtuemart mit der VCS Zahlungsmethode, der Benutzer automatisch in diesem Moodle Kurs angemeldet.

Um dieses zu nutzen, installieren Sie zunächst das normale VCS Plugin und stellen sicher, dass es für die normalen Produkte funktioniert.

Dann laden Sie diese Datei herunter und speichern sie in '/administrator/components/com_virtuemart/html/'.

Danach müssn sie das Zahlungsmodul Plugin in Virtuemart konfigurieren. Im Abschnitt Extrainformationen suchen Sie nach:

<input type="hidden" name="osApprovedUrl" value="<?php $sess->purl(SECUREURL."index.php?page=checkout.vcs&order_id=". $order_id) ?>" />

und ändern es zu :

<input type="hidden" name="osApprovedUrl" value="<?php $sess->purl(SECUREURL."index.php?page=checkout.vcs.joomdle&order_id=". $order_id) ?>" />