Main > Free Download Search >

Free ecommerce shopping cart software for linux

ecommerce shopping cart

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 67
FreeTpl Free PHP Shopping Cart 1.0

FreeTpl Free PHP Shopping Cart 1.0


FreeTpl Shop is an Free Version online shop e-commerce solution that is available for free download. more>>
More than 2,000 online store owners depend on our shopping cart and hosting to manage their e-commerce operation from top to bottom.

FreeTpl Shop is an Free Version online shop e-commerce solution that is available for free download. The project features a rich set of out-of-the-box online shopping cart functionality that allows store owners to setup, run, and maintain their online stores with minimum effort and with no costs, fees, or limitations involved.

FreeTpl Shop has attracted the largest community for an e-commerce solution, to date there are over 2,000 download all over the world.

FreeTpl combines Open Source solutions to provide a free and open e-commerce platform, which includes the powerful PHP web scripting language and the fast MySQL database server. With no special requirements, FreeTpl is able to run on any PHP 4.1+ enabled web server running on Linux, Solaris, BSD, Mac OS X, and Microsoft Windows environments

Features Not Included In Free Version

Support System
Forum System
Only 3 Basic Templates Available

FreeTpl Shop Key features include:

FreeTpl PHP Shopping Cart supports Downloadable products with instant activation option, especially useful for software companies selling their products via the Internet & could be easily integrated into any system widely utilizing the power of templates and web-administration tools. Shopping Basket with advanced Sales Mechanisms (Products reviews and ratings, Discounts mechanism, Shipping and Stock mechanisms, etc), Web-based Administration with Order Maintenance, Product Maintenance, User/Shopper Maintenance, multiple payment processing capabilities (including support of Verisign, Paypal and Authorize.net payment systems). It provides an easy, quick and flexible web interface that allows adding high performance Shopping basket to your web site.

<<less
Download (MB)
Added: 2007-05-03 License: Freeware Price:
910 downloads
Shopping Cart UNSUPPORTED

Shopping Cart UNSUPPORTED


If your products are saved in spreadsheet format, just export them as delimi more>> If you want to add a simple shopping cart to your site, this is a good start. It keeps track of returning users without using cookies. They check off items on your pages then click "add to cart. " It will add shipping etc. to the final total, then when they click "purchase", you are notified. Their email is sent to you so you can contact them about payment. To deploy, simply add a checkbox code to each item on your site. As the user checks off items, theyre automatically remembered for checkout. Considering how simple this script is to set up and install, it is quite amazing how many features are available. There is also a database script available which can integrate with this shopping cart.<<less
Download (7KB)
Added: 2009-04-15 License: Freeware Price: Free
199 downloads
closedShop - Open Source Shopping 2.2

closedShop - Open Source Shopping 2.2


closedShop - Open Source Shopping is a Perl/mySQL full e-commerce shopping cart, for free. more>> <<less
Download (1.1MB)
Added: 2006-02-26 License: GPL (GNU General Public License) Price:
1336 downloads
Webforce Cart 1.6

Webforce Cart 1.6


Webforce Cart (wfCart) is a free PHP shopping cart class you can use a component of a PHP based online store. more>>
Webforce Cart (wfCart) is a free PHP shopping cart class you can use a component of a PHP based online store. Its designed as a component for PHP developers who would rather write their own store rather than a complete solution.
Instructions and examples for the free PHP Shopping Cart
To use the cart in an existing script:
Rename wfcart.php.txt to wfcart.php and upload to your server.
Then include the file:
include("wfcart.php");
Start the session, and assign the cart to it. NOTE: You must include the file wfcart.php before you start the session, its just the way PHP works.
session_start();
$cart =& $_SESSION[cart];
if(!is_object($cart)) $cart = new wfCart();
Then you can use the functions like $cart->get_contents();, these functions are documented below.
Adding an Item - $cart->add_item( code , quantity , price , info )
If you have a widget with code AB313 and a price of $40.11, you can add it to the cart with :
$cart->add_item(AB313,1,40.11,Widget AB313 Standard);
If the item AB313 is alreay in the cart, then the quantity of it will be increased by the quantity supplied to the function, in this case 1. The itemid must be unique, and can be letters and/or numbers.
Deleting an Item - $cart->del_item( itemid );
E.g. to delete the item ID 123
$cart->del_item(123);
Changing the quantity of an item -
$cart->edit_item( itemid, new_quantity );
For example :
$cart->edit_item(HA2,3);
If you set the quanitity to zero, the item is deleted.
Getting the number of items in a cart
echo $cart->itemcount;
Getting the total value of the cart.
echo $cart->total;
Emptying the cart
$cart->empty_cart();
Getting the cart contents
$items = $cart->get_contents();
$items is an array, so the following code displays the items.
foreach($items as $item) {
echo "Code/ID :".$item[id]."
";
echo "Quantity:".$item[qty]."
";
echo "Price :".$item[price]."
";
echo "Info :".$item[info]."
";
echo "Subtotal".$item[subtotal]."
";
}
Note, subtotal is quantity X price for that item, not a running total..
Extending Webforce Cart
There are 2 functions you can create that will enable more flexability.
One is wf_get_price( itemid, qty ). If you need to do pricing based on Quantity ( e.g. bulk discounts ) then you can create a function called wf_get_price to do what you need itto do. If you do not pass a price to add_item, then the wf_ get_price function will be called. If you use this functionality, AND your price is quantity dependant, then you must uncomment the line in the edit_item function.
The other is wf_get_info, again, if you do not pass info to add_item then get_info will be called. TIP: you do not have to pass a string to add_item(), you could use an array of infomation instead. e.g. add_item( AS2112,5,19.95,array(size=>large,color=>red)); then when you use get_contents, you echo $item[info][color] etc.
Enhancements:
- The empty cart function was fixed.
<<less
Download (0.003MB)
Added: 2007-04-06 License: LGPL (GNU Lesser General Public License) Price:
933 downloads
AFCommerce 2.0

AFCommerce 2.0


AFCommerce is a full and complete online store with both a storefront and administration area, which can be easily installed, configured, and maintained over a web-based interface. The source code is more>>

AFCommerce is a full and complete online store with both a storefront and administration area, which can be easily installed, configured, and maintained over a web-based interface. Version 2 may truly be the best shopping cart solution in the world with an insane number of features and a complete custom development environment that may be used as a shopping cart, as well as, being a spring board for new applications and unique customization.
The source code is extremely easy to customize and add to. The purpose of the AFCommerce project is to break the standard for commerce solutions started by other ecommerce communities that are overly complicated and complex to configure. AFCommerce runs on the powerful PHP scripting language, the reliable Apache web server, and the popular MySQL database server. AFCommerce is able to run on any PHP 4.2 or higher enabled web server running on Linux, Solaris, BSD, Mac OS X, and Microsoft Windows environments.

Requirements: PHP 4.2 or higher

<<less
Download (0.61KB)
Added: 2009-04-17 License: Freeware Price: $0.00
191 downloads
UPS track shipping module for X-Cart 1.0

UPS track shipping module for X-Cart 1.0


UPS Track shipping module for X-Cart allows you to provide up-to-the-minute shipping status reports. more>>
UPS Track shipping module for X-Cart allows you to provide up-to-the-minute shipping status reports to your customers right from within your online store. Such feature encourages your customers to return to your shop and track their shipments or check the delivery status of their orders.

Namely, the UPS Track shipping add-on allows your customers to check the current status of their orders in X-Cart using online tracking option on the "Orders history" page. The UPS Track shipping module for X-Cart displays the complete tracking information that is available in the UPS by the moment customers perform the request. Notice, the tracking information is updated each time tracking labels are scanned in the UPS delivery system.

There are the following options available in the tracking activity records:

Origin and destination addresses Origin and destination addresses
Pick up and delivery dates Pick up and delivery dates
All UPS locations where the shipping label was scanned All UPS locations where the shipping label was scanned
Current location of the shipment Current location of the shipment
Current status of the shipment Current status of the shipment: In Transit, Delivered, Exception, Pickup, Manifest Pickup

How to install:

Simply unpack both modules and upload the files on the server in the directory where your X-Cart is installed. Then open install-shippingkit-base.php with your browser to run installation wizard for the base files.

After that you should open the file install-ups-tracking.php with your browser and follow the on-screen installation instructions. Please note that for proper script installation you should set the writable permissions to the /skin1/main/history_order.tpl template file. You can do it by running the following command if using shell or an FTP client:

chmod 777 skin1/main/history_order.tpl

If there is a control panel available on your hosting, you certainly can change the permissions there.

Notice, the module is currently available for X-Cart 4.0.x only. However, if youre running another version of X-Cart, contact us and well try to find a solution for you.
<<less
Download (0.018MB)
Added: 2006-01-24 License: Other/Proprietary License with Source Price:
1368 downloads
FreeTpl Shop 1.0

FreeTpl Shop 1.0


FreeTpl Shop is a Free PHP Shopping Cart. more>>
FreeTpl PHP Shopping Cart supports Downloadable products with instant activation option, especially useful for software companies selling their products via the Internet & could be easily integrated into any system widely utilizing the power of templates and web-administration tools.

Shopping Basket with advanced Sales Mechanisms (Products reviews and ratings, Discounts mechanism, Shipping and Stock mechanisms, etc), Web-based Administration with Order Maintenance, Product Maintenance, User/Shopper Maintenance, multiple payment processing capabilities (including support of Verisign, Paypal and Authorize.net payment systems). The project provides an easy, quick and flexible web interface that allows adding high performance Shopping basket to your web site.


<<less
Download (5.3MB)
Added: 2007-04-29 License: GPL (GNU General Public License) Price:
911 downloads
Zen Cart 1.3.7

Zen Cart 1.3.7


Zen Cart truly is the art of e-commerce; a free, user-friendly, open source shopping cart system. more>>
Zen Cart truly is the art of e-commerce; a free, user-friendly, open source shopping cart system. Zen Cart software is being developed by group of like-minded shop owners, programmers, designers, and consultants that think e-commerce could be and should be done differently.
Some "solutions" seem to be complicated programming exercises instead of responding to users needs, Zen Cart puts the merchants and shoppers requirements first. Similarly, other programs are nearly impossible to install and use without an IT degree, Zen Cart can be installed and set-up by anyone with the most basic computer skills. Others are so expensive ... not Zen Cart, its FREE!
Zen Cart will deliver the ultimate online shopping experience to your customers. Navigating through your merchandise offerings is a breeze with Zen Cart, the program provides several "Spotlight" lists in addition to the traditional category to product links. Once a product is added to the shopping cart, secure checkout is a simple 3-step process.
After providing the billing information, your customer chooses the shipping method. (multiple shipping methods including real-time internet shipping quotes are built-in) Next, a payment type is chosen from one of the popular payment modules. (PayPal and AuthorizeNet are just 2 of the included modules) Last, the customer reviews the order, shipping and payment choices, and confirms the order.
You are immediately notified of the order and your customer automatically receives an e-mail confirmation.
Zen Cart addresses many of the goals we set:
- make the program easy to set up
- make it easy to customize
- automate tasks, such as order confirmation
- make navigation simple
- built in promotions; discount coupons, gift certificates, newsletters and product notification
- offer single item specials and storewide discounts (group discounts and quantity discounts - Coming in future editions)
- built in Search Engine Optimization tools
- password protect the Administration Tool (administration "levels" - Coming in future editions)
- support multiple languages, currencies and tax structures
- In short, Zen Cart is shopping cart software the way it should have been all along.
Zen Cart gives web designers a robust and customizable electronic storefront thats easy to keep up-to-date with new features.
It provides usable, intuitive and unobtrusive purchase flows right out of the box based on proven industry best-practices - there are no major revisions required to get things right for your clients!
One of the secrets behind its power lies in our robust template system that "abstracts" the look-and-feel from the code and logic behind Zen Cart. This enables you to give clients a truly custom solution that integrates quickly and perfectly with their existing marketing websites.
Developers are able to deploy cutting edge solutions based on Zen Carts modern standards and technologies. Combining PHP server-side technology with the ability to choose from multiple databases on the back end (coming in future editions, thanks to ADOdb), results in flexible software that you can customize and modify to suit your needs. Minimum/suggested server requirements: PHP 4.1.x or higher (PHP 4.3.3+ for optimal performance), Apache 1.3.x and MySQL 3.2x.x or higher.
Enhancements:
- Two vulnerabilities related to cross site scripting (XSS) have been fixed.
- Officially certified for Paypal Express Checkout (only for North American Paypal accounts as of 20070101).
- Also includes several minor improvements and bugfixes.
<<less
Download (3.9MB)
Added: 2007-01-02 License: GPL (GNU General Public License) Price:
1046 downloads
ViArt Shop 2.2.6

ViArt Shop 2.2.6


ViArt Shop is a Customizable Ecommerce PHP shopping cart software. more>>
ViArt Shop is a Customizable Ecommerce PHP shopping cart software coming with Shopping Portal Extension, multiple layouts support and with advanced set of Sales Mechanisms (Products reviews and ratings, Discounts mechanism, Shipping and Stock mechanisms, etc), Web-based Administration with Order Maintenance, Product Maintenance, User/Shopper Maintenance, Vendor Maintenance, multiple payment processing capabilities (including support of Verisign, Authorize.net, Worldpay payment systems and more).
This ecommerce solution supports MySQL and PostgreSQL databases as well as ODBC connected databases.
Package includes additional applications: Events, News, FAQ, Support Heldesk System and Forum. The set of these applications and the highly-customizable Shopping Portal Extension allows creating complex Shopping Portal in no time!
Main features:
- No need for programming at all!
- Two-steps installation routine.
- Buy two integrated applications by the price of one: PHP Shopping Cart and Shopping Portal.
- Template-based system
- Multilingual interface
- Coupons
- Enterprise version comes with two more bonus applications: Support Helpdesk System and Forum integrated within one powerful Shopping Portal.
<<less
Added: 2005-08-05 License: GPL (GNU General Public License) Price:
1542 downloads
Interchange 5.4.2

Interchange 5.4.2


Interchange provides a mature Web application development environment. more>>
Interchange provides a mature Web application development environment.
Interchange is a mature Web application development environment with a focus on ecommerce and dynamic content management.
It offers session and user management, database connectivity (both via SQL and a database abstraction layer), templating, a shopping cart, payment processing, inventory, encryption (via GnuPG, PGP, etc.), tax and shipping calculation, discounts, Web-based administration, localization, event routing, SOAP-based RPC, a custom tag language akin to CFML, and the full power of Perl. It grew out of two earlier projects, MiniVend and Tallyman.
Enhancements:
- A DoS exploit caused by carefully crafted HTTP POST requests has been fixed.
- An apparent Perl bug that allowed code called by DispatchRoutines to overwrite the routines arrays themselves has been worked around.
- Masking of unencrypted credit card numbers to work with a custom MV_CREDIT_CARD_INFO_TEMPLATE that does not match the regexp has been fixed.
- The regexp has been fixed so that it removes the CVV2 value from the unencrypted data.
- A shipping problem with the temporary mv_shipping cart that could cause trouble in cart recalculations has been fixed.
- There are other various bugfixes and minor enhancements.
<<less
Download (2.2MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
990 downloads
Gourmet Recipe Manager 0.13.3

Gourmet Recipe Manager 0.13.3


Gourmet Recipe Manager is a simple but powerful recipe managing application that is intended for the GNOME desktop environment. more>>
Gourmet Recipe Manager is a simple but powerful recipe-managing application. Gourmet is intended for the GNOME desktop environment, but works on any platform that gtk supports, including windows.
Gourmet allows you to collect, search and organize your recipes, and to automatically generate shopping lists from your collection. Take a look at the screenshots for a sense of how this works.
Gourmet Recipe Manager is free software. If you want to contribute to the project and youre a python programmer, please take a look at the source code and start hacking! If you would like to use Gourmet in a language other than English, you can help translate gourmet using the rosetta web-based tool.
Simple Search
Screenshot of Search viewA simple index view allows you to look at all your recipes as a list and quickly search through them by ingredient, title, category, cuisine, rating, or instructions. Searching happens as you type to save you keystrokes, and multiple kinds of searches can easily be combined from this same view (so you can search for salads (category) with walnuts (ingredient) without having to open a separate dialog. You can easily sort recipes by clicking on the column youd like to sort by. Furthermore, for advanced users, you can search using regular expressions.
Recipe Editor
Screenshot of Search viewA recipe card view allows editing and entering individual recipes easily. It also instantly multiplies ingredient amounts if you need to multiply or divide a recipe, and even adjusts units to keep them as readable as possible (so that 2 tbs. x 4 displays as 1/2 cup). Gourmet aims to make entering ingredients as intuitive and painless as possible, while still allowing for powerful features. Major Features:
A keyed ingredient list which allows searches and shopping-list generation to understand synonyms (like aubergine and eggplant) and ignore ingredient descriptions (i.e. to treat "tomatoes, finely chopped" as "tomatoes" for the purpose of searching and generating shopping lists.
An intuitive spreadsheet-like editing interface
An alternative, fast form-like ingredient entering interface (which allows you to easily type ingredient lists without looking at the screen.
Drag-n-drop support for importing ingredient lists from your web browser or other application.
Support for pasting ingredient lists in from your clipboard.
Support for grouping ingredients within a recipe.
Support for calling another recipe as an ingredient.(Note: this allows you to use a recipe as a menu!)
Support for optional ingredients.
In addition to ingredients and instructions, you can enter information about categories, cuisines, and ratings that you can later use to search for recipes. In each case, Gourmet allows you a drop down menu of standard categories and categories youve used in the past, but also allows you to enter any custom categories you like.
You can also add images to your recipe for an attractive display. Thumbnails will be displayed in the recipe index. Currently, only HTML export supports images.
Import and Export
Gourmet includes simple and powerful import and export filters for a number of formats, including the two most common recipe formats on the web (mealmaster and mastercook).
Gourmet can import the following kinds of files:
Mealmaster Files
MasterCook text files
MasterCook XML files
Gourmet XML files
A number of popular recipe websites, such as epicurious and recipezaar
Gourmet also can import ingredient lists from a regular plain text list, which can be imported from a file, pasted from the clipboard or dragged onto the editing view.
Gourmet can export the following kinds of files:
Mealmaster files
Rich Text Format
Plain Text
Recipe Web Pages
Gourmet XML files
On GNU/Linux systems, gourmet can also export PDF or postscript files via its printing interface.
Gourmet aims to import and export as many common formats as possible. If you have a format youd like to import, please submit a feature request, or, if youre a programmer, go ahead and start writing the filter yourself!
Shopping List Manager
Screenshot of Shopping List ViewGourmet allows you to automatically generate shopping list from your recipes. You can easily multiply recipes when you add them to adjust for the number of people youre cooking for. If the units are convertable, different units used in different recipes will be added up correctly on your shoppings list (Gourmet even knows the density of some common foods to allow volume-to-weight conversions!). If Gourmet cant convert your units, the shopping list will simply display both units -- for example, the screenshot shows both tsp. and cloves of garlic, since these units cant be sensibly combined.
If you already have an item that appears on your shopping list, you can drag it into your "pantry" so it wont be included! Items added to your pantry will be remembered in the future (so you dont have to manually remove items like "water" from your shopping list every time a recipe calls for it). However, since the pantry list is shown next to the shopping list, you will always have a list at hand of all the ingredients called for by your recipes. (You can drag an item back from the pantry to the shopping list if youve run out.)
The shopping list is also automatically sorted into categories. Gourmet knows the basic categories of a number of foods (produce, meat, fish), and you can create whatever categories are convenient for your own shopping -- I use it for sorting out the basic sections and aisles of my local grocery store and those items that I get from specialty stores. You can set up shopping categories as you enter recipes, or you can move ingredients around within the shopping list view by drag and dropping or using a popup menu.
Main features:
- Simple searching and sorting
- Easy recipe editing
- Import and export from various formats
- A shopping list creator and organizer
<<less
Download (2.1MB)
Added: 2007-01-04 License: GPL (GNU General Public License) Price:
1027 downloads
Ask.com Toolbar 2.0

Ask.com Toolbar 2.0


Ask.com Toolbar is an extension to search better with Ask.com whereever you go with your Firefox browser. more>>
Ask.com Toolbar is an extension to search better with Ask.com whereever you go with your Firefox browser. Get direct access to the new AskCity and a convenient drop-down box for Maps with your favorite locations.

Save images and Web pages for sharing in MyStuff, get your fill of the blogosphere with Ask-powered blog and feed search, and read news headlines right in the toolbar. Customize your toolbar with any of these and many other options including weather, stocks, shopping, translations and more.

<<less
Download (0.063MB)
Added: 2007-05-03 License: Other/Proprietary License Price:
907 downloads
Argus Monitoring System 3.5

Argus Monitoring System 3.5


Argus Monitoring System software is a system and network monitoring application. more>>
Argus Monitoring System software is a system and network monitoring application.
It will monitor nearly anything you ask it to monitor (TCP + UDP applications, IP connectivity, SNMP OIDS, Programs, Databases, etc).
It presents a nice clean, easy to view web interface that will keep both the managers happy (Red Bad. Green Good.) and the techs happy ("Ah! thats what the problem is").
It can send alerts numerous ways (such as via pager) and can automatically escalate if someone falls asleep.
Main features:
- It is open-source available at no charge.
- It has a clean and intuitive web interface.
- The web pages can easily be understood by non-technical people.
- It can generate graphs of what is going on.
- It can monitor network connectivity (Ping test)
- It can monitor TCP/UDP ports
- It can monitor a wide variety of TCP/UDP applications (HTTP, SMTP, RADIUS, ...)
- It can monitor the output or exit code of a program (Program test)
- It can monitor the content of a web page (such as a shopping cart application)
- It can monitor the authoritativeness of a nameserver
- It can monitor SNMP OIDs (such as BGP status, UPS voltage, room temperature, ...)
- It can monitor the results of SQL queries
- It can monitor itself.
- It can be extended to monitor things that the author didnt think of
- It can notify someone (or many people) when something happens
- It can escalate, and notify someone else, if things dont get fixed.
- It can not alarm for known downtime (maintenance overrides)
- It will summarize and rate-limit multiple notifications to prevent paging-floods.
- It keeps historical statistics, for analysis or SLA verification.
- It scales well and can monitor many, many things.
- It can restrict users to viewing only certain items (user "views")
- It can restrict users access to certain features (access control)
- It can support IPv6.
- It can support SNMPv3.
- It can support l10n for your native language.
- It can support redundant multi-server configurations.
Enhancements:
- This release offers improved performance and scalability, adds support for additional tests, and adds support for failover and redundancy.
<<less
Download (0.35MB)
Added: 2007-06-15 License: Artistic License Price:
867 downloads
Ubercart Alpha 7

Ubercart Alpha 7


Ubercart project is an e-commerce shopping cart integrated with the Drupal CMS. more>>
Ubercart project is an e-commerce shopping cart integrated with the Drupal CMS.
Main features:
- Configurable product catalog includes catalog pages and a block to display product categories.
- Flexible product creation system. Create normal products by default. Create product classes to store more information on a subset of your catalog. (Ex: Creating a book class would let you store and display separately the author, publisher, and length of the book.)
- Flexible product attributes system. Create user selectable attributes for your products that modify the price, SKU/model, and/or weight of items as the customer adds them to his or her cart.
- Single page checkout. All checkout information gathered on a single screen composed of configurable checkout panes. Third party modules can define checkout panes to replace or add to the default set, making it easy to customize the checkout experience.
- Automatic account generation (anonymous checkout). Accounts and emails are automatically generated based on the customers e-mail address. For return customers, previously used addresses will be listed on the checkout page for easy access.
- Simple order processing. The order administration screens have been designed by and for our salesmen. We believe there is always room for improvement and will try to make it happen! Order screens use the "pane" model, so the screens are configurable and extensible to accommodate a wide variety of e-commerce applications.
- Simple order creation and editing. Easy to create orders manually for customers, adding products, shipping prices, etc. from a single screen. Line items system makes it easy to add fees, discounts, and coupons to orders.
- Integrated payment system that acts as a bridge between acceptable payment methods (check, credit card, cod, etc.) and payment gateways (Cyber Source, Authorize.net, PayPal, etc.). Configurable payment processing and tracking, and easy to use credit card terminal with varying levels of access.
- Activity logging. Enable logging to see all the changes made to an order, including payment processing. (Your accountant will love this!)
<<less
Download (0.20MB)
Added: 2007-07-07 License: GPL (GNU General Public License) Price:
841 downloads
mysqlCart 0.46 RC5

mysqlCart 0.46 RC5


mysqlCart provides a template based dynamic e- commerce shop system. more>>
mysqlCart provides a template based dynamic e- commerce shop system.

It does not require any modules or rely on interpreted languages and is very fast even on older machines.

Finally a template driven -pure C with mySQL C API-, very fast and easy on your CPU and RAM GPL ecommerce solution. The mysqlCart/mysqlShop admin/dynamic site combo is from the world leaders in GPL ISP software OpenISP, and it is FREE (more so GPL free! www.fsf.org)

This ecommerce solution gives you the edge over clunky perl (shudder!) or pain in the ... php installation nightmare and interpreted lameness. And phps awkward syntax tries to be like C (php is written in C, but study its history and come to your own conclusions about its usefulness for heavy traffic sites,) so why bother?

To be fair php is great for certain things but C is much better for mySQL cgis. All unix type OSs, including Linux/FreeBSD/OpenBSD and Solaris are written in C.

<<less
Download (0.57MB)
Added: 2007-02-22 License: GPL (GNU General Public License) Price:
975 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5