Interchange 5.7.1 (Development branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Interchange 5.7.1 (Development branch)
# 1  
Old 11-14-2008
Interchange 5.7.1 (Development branch)

ImageInterchange is an advanced e-commerce platform. It enables you to build completely customized and flexible online shops, while utilizing the knowledge gathered in more than a decade of active development. It offers high level e-commerce functions, support for PostgreSQL, MySQL, and Oracle, templating, a complete shopping cart functionality, payment processing, inventory, tax and shipping calculation, discounts, Web-based administration, localization, event routing, SOAP-based RPC, a custom tag language, and the full power of Perl.License: GNU General Public License v2Changes:
Bugfixes were made to prevent cross-site scriptingand to fix regressions in the previous releases.Minor feature enhancements were added.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Awk: Interchange the Rows and column

Hi, I have following input and want to change it to following output INPUT 01-APR-14,KB,822714 01-APR-14,MB,8133431 02-APR-14,KB,757140 02-APR-14,MB,7770368 03-APR-14,KB,815427 03-APR-14,MB,7590511 04-APR-14,MB,7529895 04-APR-14,KB,779561 05-APR-14,MB,8151537 05-APR-14,KB,809675 ... (6 Replies)
Discussion started by: siramitsharma
6 Replies

2. Shell Programming and Scripting

UNIX script to interchange column values

Hi, I have the below script which is fetching the data from a file as below: awk -F "~" 'NR>1 {print $5}' 1.txt The o/p is like: 1452350 1458638 1452350 2 5696837 No i want to put 5696837 before 1458638 in above o/p So final o/p should look like: 1452350 5696837 1458638 (2 Replies)
Discussion started by: Vivekit82
2 Replies

3. UNIX for Advanced & Expert Users

How to interchange the places of 1st name and last name?

cat emp.lst 12 |Rob Cliff |G.M. 14 |Mark Rob |Chairman Please use awk to invert the names in the file emp.lst, i.e. the surname should be 1st and then the 1st name. There are trailing spaces even in each field making them fixed length. (4 Replies)
Discussion started by: ravisingh
4 Replies

4. Shell Programming and Scripting

Easy edit problem: interchange columns

hi; my file1.txt: cell137 1 cell337 1 cell355 1 cell355 3 cell360 1 cell360 2 cell360 3 my file2.txt: ... cell137 1 20.64.1.97 cell137 2 20.64.1.97 cell137 3 20.64.1.97 ... cell337 1 20.64.1.113 cell337 2 20.64.1.113 cell337 3 20.64.1.113 (4 Replies)
Discussion started by: gc_sw
4 Replies

5. Shell Programming and Scripting

vi editor - interchange two lines

Hi, I have a quick question regarding vi editor.Is it possible to interchange two lines in vi editor without using the possibilites of cut-paste,copy paste etc? Your help is appreciated! Regards Dileep (4 Replies)
Discussion started by: DILEEP410
4 Replies

6. Shell Programming and Scripting

How to interchange the lines

Hi, I want to know that, how to inter change the lines. In the following file two line are there first one is conatin PD next line PY. But i want to first line PY and next line PD. My file structure is like this: TI Electronic Publishing AU Robert PD... (5 Replies)
Discussion started by: shankarao
5 Replies
Login or Register to Ask a Question
Vend::Payment::MCVE(3pm)				User Contributed Perl Documentation				  Vend::Payment::MCVE(3pm)

NAME
Vend::Payment::MCVE - Interchange MCVE support SYNOPSIS
&charge=mcve or [charge mode=mcve param1=value1 param2=value2] or mcve($mode, $opt); PREREQUISITES
MCVE.pm The MCVE libraries are available free at http://www.mcve.com/ DESCRIPTION
MCVE, Mainstreet Credit Verification Engine is a high performance software application designed to provide quality, in-house, Credit Card processing FROM Linux, FreeBSD, OpenBSD, IBM AIX, Sun Solaris, SCO OpenServer/UnixWare, and Mac OS X platforms to established clearing houses. The MCVE C & Perl library software can be downloaded free of charge from http://mcve.com. This module was developed and tested with the server software installed on HotConnect.net (http://www.hotconnect.net). Hot Connect, Inc. is an Interchange friendly Web Hosting, E-Commerce, and Internet Services company. The Vend::Payment::MCVE module implements the mcve() routine for use with Interchange. It is compatible on a call level with the other Interchange payment modules. To enable this module, place this directive in "interchange.cfg": Require module Vend::Payment::MCVE This must be in interchange.cfg or a file included from it. Make sure CreditCardAuto is off (default in Interchange demos). The mode can be named anything, but the "gateway" parameter must be set to "mcve". To make it the default payment gateway for all credit card transactions in a specific catalog, you can set in "catalog.cfg": Variable MV_PAYMENT_MODE mcve It uses several of the standard settings from Interchange payment. Any time we speak of a setting, it is obtained either first from the tag/call options, then from an Interchange order Route named for the mode, then finally a default global payment variable, For example, the "id" parameter would be specified by: [charge mode=mcve name=mcve_configname] or Route mcve name mcve_configname or Variable MV_PAYMENT_NAME mcve_configname The active settings are: Variable MV_PAYMENT_MODE mcve Variable MV_PAYMENT_NAME mcve_username Variable MV_PAYMENT_PASSWD mcve_password Variable MV_PAYMENT_HOST sv1.carlc.com Variable MV_PAYMENT_PORT 8333 Variable MV_PAYMENT_COUNTER etc/mcve_id.counter Variable MV_PAYMENT_COUNTER_START 100 Variable MV_PAYMENT_SALE_ON_AUTH 1 Variable MV_PAYMENT_NO_SALE_BAD_AVS 0 Variable MV_PAYMENT_NO_SALE_BAD_CVV2 0 Variable MV_PAYMENT_SUCCESS_ON_ANY 0 name Your MCVE configuration username, set up when MCVE was configured/installed on the machine. Global parameter is MV_PAYMENT_NAME. no_sale_bad_avs Normally Interchange charge modules do an authorization, and if successful, do a sale. This module is configurable for a different models, where transactions are not automatically saled. sale_on_auth The storekeeper may not wish to sale a transaction if the AVS is bad. success_on_any Alternatively the storekeeper may wish to cause any transaction to appear to be a successful sale. The storekeeper would have to contact buyers with bad credit card information and manually redo the sale. The motivation is to make sure no one attempts a sale and gives up for any reason. This mode of operation, set with MV_PAYMENT_SUCCESS_ON_ANY is not commonly used. transaction The type of transaction to be run. Valid values are: Interchange mode MCVE mode ---------------- ----------------- auth auth sale sale Not supported yet: return return reverse reverse void void counter, counter_start Currently this is not being used, and Interchange is generating id's. Route mcve counter etc/mcve_id.counter Route mcve counter_start 100 Troubleshooting Try the instructions above, with a test credit card number from your payment processor. Then try a sale with the card number "4111 1111 1111 1111" and a valid expiration date. The sale should be denied, and the reason should be in [data session payment_error]. If nothing works: Make sure you "Require"d the module in interchange.cfg: Require module Vend::Payment::MCVE Make sure MCVE is installed and working. Check the error logs, both catalog and global. Make sure you set your payment parameters properly. Try an order, then put this code in a page: [calc] $Tag->uneval( { ref => $Session->{payment_result} ); [/calc] That should show what happened. BUGS
There is actually nothing *in* Vend::Payment::MCVE. It changes packages to Vend::Payment and places things there. AUTHORS
MCVE modifications by tom@readyink.com for Carlc Internet Services CREDITS
Derived from CCVS.pm template, and others. perl v5.14.2 2011-03-09 Vend::Payment::MCVE(3pm)