The AcuInvoice Simple Store is a free e-commerce application written in PHP that uses the AcuInvoice API to enable AcuInvoice subscribers to quickly generate a standards-compliant web store. Order information is passed securely via the AcuInvoice API to the subscriber’s account and invoices are automatically sent. If you sell digital goods (MP3s, images, software, etc), the items will be automatically delivered to the customer once payment is received and the invoice is converted into a closed state. Since the application uses the AcuInvoice API, the AcuInvoice Simple Store automatically works with any AcuInvoice payment gateway, currently, PayPal, 2checkout.com, Amazon Flexible Payment Service, Google Checkout, or Authorize.net.
The AcuInvoice Simple Store is in version 1.0 and was released on 4 March, 2008. Updates will be released as the AcuInvoice feature set is expanded. simple-store-3-5-2008.zip
To install the AcuInvoice Simple Store, perform the following steps:
Once the installation has completed successfully you can manage your product, store content, visual style, etc. through the administrative application “admin.php”.
The customer part of the store is located at “index.php”. See also the installation video below.
Standalone mode is the store's default mode of operation. This mode renders the store at /index.php in directory where you installed the store.
To embed the store in an existing page (assuming the page is generated by a PHP script):
<?php echo include '/path/to/store/index.php'; ?>
Alternately, if you use some sort of template engine such as Smarty, you can do this:
$smarty->assign('store_content', include '/path/to/store/index.php'; ?>
where 'store_content' is the name of the replacement tag in your HTML template.