Difference between revisions of "VbzCart"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
m (25 revision(s))
(post-import tidying)
Line 1: Line 1:
[[Technology]]: [[VbzCart]]
+
==Navigation==
 +
[[computing]]: [[software]]: [[web software|web]]: [[shopping cart software|shopping carts]]: [[VbzCart]]
 +
==Introduction==
 +
Having evaluated [[osCommerce]] (and, later, [[ZenCart]]) and found that, although it had many features I would like to have on vbz.net, it also lacked some crucial features currently needed (many of which are provided by the existing shopping cart system, and some of which would be needed in order to effectively manage porting the data from the existing system).
  
Having evaluated {{yp|osCommerce}} and found that, although it had many features I would like to have on vbz.net, it also lacked some crucial features currently needed (many of which are provided by the existing shopping cart system, and some of which would be needed in order to effectively manage porting the data from the existing system).
+
So I'm writing a new system, in [[PHP]] (originally started in Perl, but needed PHP for interfacing with [[MediaWiki]]) and [[MySQL]], based on the data design of the existing VBZ cart system and adding new pieces as needed.
 
 
So I'm writing a new system, in <s>PHP</s> {{yp|Perl}}, based on the data design of the existing VBZ cart system and adding new pieces as needed.
 
 
 
I will be taking notes on this page and gradually refining them into something resembling documentation, with the ultimate goal of producing a system which could be released under an [[htwiki:FOSS|open source]] license.
 
  
 +
I will be taking notes on this page and gradually refining them into something resembling documentation, with the ultimate goal of producing a system which could be released under an [[FOSS|open source]] license.
 +
==Status==
 +
VbzCart is very much in a pre-alpha state of development. I'm slowly porting chunks of it from its former platform, which was a combination of [[MS Access 97]] and clumsily-written [[Perl]]. The stock data is now entirely in MySQL, and most of the catalog data is available in MySQL but still maintained in MS Access.
 
==Documents==
 
==Documents==
*VbzCart uses [[htwiki:HyperAdmin|HyperAdmin]] for administration of privileged users
+
* <s>VbzCart uses [[htwiki:HyperAdmin|HyperAdmin]] for administration of privileged users</s> (may end up using this, or may end up using MediaWiki to mediate log-in privileges)
*[[VbzCart Tables]]: all tables used by VbzCart
+
* [[VbzCart tables]]: all tables used by VbzCart
*Data Concepts:
+
* Data Concepts:
** [[VbzCart Cart|Carts]]
+
** [[VbzCart cart|Carts]]
** [[VbzCart Order|Orders]]
+
** [[VbzCart order|Orders]]
** [[VbzCart Session|Sessions]]
+
** [[VbzCart session|Sessions]]
 
* General Concepts:
 
* General Concepts:
** [[VbzCart Ordering]]: how ordering works (carts, orders, etc.)
+
** [[VbzCart ordering]]: how ordering works (carts, orders, etc.)
 
* Other notes:
 
* Other notes:
** [[VbzCart Tables in Access]]: the data schema as currently implemented (2006)
+
** [[VbzCart tables in MS Access]]: the data schema as currently implemented (2006)
 
** [[VbzCart catalog building]]: how the catalog is built from stock and supplier catalogs
 
** [[VbzCart catalog building]]: how the catalog is built from stock and supplier catalogs
 
** [[VbzCart wikified topics]]: using MediaWiki to manage store topics
 
** [[VbzCart wikified topics]]: using MediaWiki to manage store topics
 
** [[VbzCart shelved ideas]]: concepts and code which might be useful later, but isn't worth it right now
 
** [[VbzCart shelved ideas]]: concepts and code which might be useful later, but isn't worth it right now

Revision as of 23:43, 1 July 2007

Navigation

computing: software: web: shopping carts: VbzCart

Introduction

Having evaluated osCommerce (and, later, ZenCart) and found that, although it had many features I would like to have on vbz.net, it also lacked some crucial features currently needed (many of which are provided by the existing shopping cart system, and some of which would be needed in order to effectively manage porting the data from the existing system).

So I'm writing a new system, in PHP (originally started in Perl, but needed PHP for interfacing with MediaWiki) and MySQL, based on the data design of the existing VBZ cart system and adding new pieces as needed.

I will be taking notes on this page and gradually refining them into something resembling documentation, with the ultimate goal of producing a system which could be released under an open source license.

Status

VbzCart is very much in a pre-alpha state of development. I'm slowly porting chunks of it from its former platform, which was a combination of MS Access 97 and clumsily-written Perl. The stock data is now entirely in MySQL, and most of the catalog data is available in MySQL but still maintained in MS Access.

Documents