Estas funciones interaccionan con el API de CCVS, permitiendo
trabajar con CCVS directamente desde un script PHP. CCVS es la
solución de RedHat para
el intermediario en el procesamiento de tarjetas de
crédito. Permite conectar directamente con las centrales de
las tarjetas desde una máquina *nix con un
módem. Usando el módulo para PHP de CCVS, se pueden
procesar tarjetas de crédito directamente desde vuestros
scripts en PHP.
Nota:
CCVS ha sido discontinuado por Red Hat y no existen planes de
ofrecer nuevas funcionalidades ó contratos de ayuda. Los
que necesiten usar esta funcionalidad pueden probar MCVE by Main Street Softworks.
Es similar en diseño y tiene documentación para su
uso con PHP.
Esta extensión ha sido removida de PHP
y no se encuentra disponible a partir de PHP 4.3.0. Si quereis
utilizar la capacidad de procesar tarjetas de crédito,
usar MCVE.
To enable CCVS Support in PHP, first verify your CCVS installation
directory. You will then need to configure PHP with the --with-ccvs option. If you use this
option without specifying the path to your CCVS installation, PHP
will attempt to look in the default CCVS Install location
(/usr/local/ccvs). If CCVS is in a non-standard location,
run configure with: --with-ccvs=[DIR], where
DIR is the path to your CCVS installation. Please note that CCVS support
requires that DIR/lib and DIR/include exist, and include
cv_api.h under the include directory and
libccvs.a under the lib directory.
Additionally, a ccvsd process will need to be running for the configurations
you intend to use in your PHP scripts. You will also need to make sure the PHP
Processes are running under the same user as your CCVS was installed as (e.g.
if you installed CCVS as user 'ccvs', your PHP processes must run as 'ccvs' as
well.)