bradmssw                Sun Oct 20 23:31:03 2002 EDT

  Modified files:              
    /phpdoc/en/reference/mcve   reference.xml 
  Log:
  initial real docs
  
  
Index: phpdoc/en/reference/mcve/reference.xml
diff -u phpdoc/en/reference/mcve/reference.xml:1.3 
phpdoc/en/reference/mcve/reference.xml:1.4
--- phpdoc/en/reference/mcve/reference.xml:1.3  Tue Jul 23 05:34:49 2002
+++ phpdoc/en/reference/mcve/reference.xml      Sun Oct 20 23:31:02 2002
@@ -1,16 +1,69 @@
 <?xml version='1.0' encoding='iso-8859-1'?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
  <reference id="ref.mcve">
-  <title>MCVE functions</title>
-  <titleabbrev>MCVE functions</titleabbrev>
+  <title>MCVE Payment Functions</title>
+  <titleabbrev>MCVE</titleabbrev>
 
   <partintro>
    <section id="mcve.intro">
    &reftitle.intro;
-   &warn.experimental;
     <para>
+     These functions interface the MCVE API (libmcve), allowing you
+     to work directly with MCVE from your PHP scripts.  MCVE is
+     Main Street Softworks' solution to direct credit card processing.
+     It lets you directly address the credit card clearing houses via
+     your *nix box, modem and/or internet connection (bypassing the
+     need for an additional service such as Authorize.Net or Pay
+     Flow Pro).  Using the MCVE module for PHP, you can process
+     credit cards directly through MCVE via your PHP scripts. The
+     following references will outline the process.
     </para>
+    <note>
+     <para>
+      MCVE is the replacement for RedHat's CCVS. They contracted with
+      RedHat in late 2001 to migrate all existing clientelle to the
+      MCVE platform.
+     </para>
+    </note>
    </section>
+   <section id="mcve.installation">
+    &reftitle.install;
+    <para>
+     To enable MCVE Support in PHP, first verify your LibMCVE installation
+     directory.  You will then need to configure PHP with the <option
+     role="configure">--with-mcve</option> option.  If you use this
+     option without specifying the path to your MCVE installation, PHP
+     will attempt to look in the default LibMCVE Install location
+     (/usr/local).  If MCVE is in a non-standard location, run
+     configure with: <option
+     role="configure">--with-mcve=$mcve_path</option>, where $mcve_path
+     is the path to your MCVE installation.  Please note that MCVE 
+     support requires that $mcve_path/lib and $mcve_path/include exist,
+     and include mcve.h under the include directory and libmcve.so and/or
+     libmcve.a under the lib directory.
+    </para>
+    <para>
+     Since MCVE has true server/client separation, there are no additional
+     requirements for running PHP with MCVE support.  To test your 
+     MCVE extension in PHP, you may connect to testbox.mcve.com on 
+     port 8333 for IP, or port 8444 for SSL using the MCVE PHP API.
+     Use 'vitale' for your username, and 'test' for your password.
+     Additional information about test facilities are available at
+     <ulink url="http://www.mcve.com";>www.mcve.com</ulink>.
+    </para>
+   </section>
+   
+   <section id="mcve.seealso">
+    &reftitle.seealso;
+    <para>
+     Additional documentation about MCVE's PHP API can be found at
+     <ulink url="http://www.mcve.com/docs/phpapi.pdf";>
+     http://www.mcve.com/docs/phpapi.pdf</ulink>. Main Street's 
+     documentation is complete and should be the primary reference
+     for functions.
+    </para>
+   </section>
+
   </partintro>
 
 &reference.mcve.functions;



-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to