Difference between revisions of "osCommerce"

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
 
(updates & format tweaks)
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[OSCommerce]] is a [[FOSS|free, open-source]] application for running an online store.{{seed}}
+
==Navigation==
 +
[[computing]]: [[software]]: [[web software]]: [[osCommerce]]
 +
==Overview==
 +
[[osCommerce]] is a [[FOSS|free, open-source]] application for running an online store.{{seed}}The state of its development listed on this page dates from July, 2005; it may have progressed significantly since then.
 +
==Related Pages==
 +
* [[osCommerce]]:
 +
** [[osCommerce tables]]
 +
* [[ZenCart]] is a shopping cart system derived from osCommerce; it is also [[FOSS|free/open-source]], but apparently more measures have been taken towards user-friendliness in the setup.
 +
 
 +
==Evaluation==
 +
Minor annoyances:
 +
* No admin-authorization system; you have to use http access control, or roll your own
 +
* Appears to need register_globals to be enabled in [[PHP]], which is a security risk
 +
 
 +
There doesn't seem to be a way to import data from (e.g.) [[QuickBooks]], unfortunately.
 +
 
 +
Text displayed on the site ''can'' in fact be edited via osCommerce's web interface; you have to read what the default text on the front page says. The text settings are intermingled with PHP code, however, which may be daunting for some users.
 +
 
 
==Reference==
 
==Reference==
 
* [http://oscommerce.org home page]
 
* [http://oscommerce.org home page]
 
* {{wikipedia|OsCommerce}}
 
* {{wikipedia|OsCommerce}}
 +
==Links==
 +
* [http://www.techsol-host.com/ecommerce.php Tech Solutions] can interface osCommerce and [[QuickBooks]] (not clear whether they can do this for other people or just their own hosted clients); see [[2006-08-10 Woozle-Techsol emails|this correspondence]] for some details.
 +
 
==Notes==
 
==Notes==
 
*'''Lesson 1''': When the install script gives you two seemingly-identical files to chmod, note that even though they have the same name and are in the same directory, they are ''not'' the same file -- the path for one has "/admin" in it.
 
*'''Lesson 1''': When the install script gives you two seemingly-identical files to chmod, note that even though they have the same name and are in the same directory, they are ''not'' the same file -- the path for one has "/admin" in it.
 
*'''Lesson 2''': Do not delete all the Manufacturers before adding your own. You will get the following error:
 
*'''Lesson 2''': Do not delete all the Manufacturers before adding your own. You will get the following error:
<center>
+
{{quoteon}}
{| style="width: 90%; background: #eeeeee;"
 
|- align=left
 
|
 
 
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-20, 20' at line 1
 
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-20, 20' at line 1
  
Line 15: Line 32:
  
 
[TEP STOP]
 
[TEP STOP]
|}
+
{{quoteoff}}
</center>
 

Latest revision as of 16:42, 23 February 2007

Navigation

computing: software: web software: osCommerce

Overview

osCommerce is a free, open-source application for running an online store.

This page is a seed article. You can help HTYP water it: make a request to expand a given page and/or donate to help give us more writing-hours!

The state of its development listed on this page dates from July, 2005; it may have progressed significantly since then.

Related Pages

Evaluation

Minor annoyances:

  • No admin-authorization system; you have to use http access control, or roll your own
  • Appears to need register_globals to be enabled in PHP, which is a security risk

There doesn't seem to be a way to import data from (e.g.) QuickBooks, unfortunately.

Text displayed on the site can in fact be edited via osCommerce's web interface; you have to read what the default text on the front page says. The text settings are intermingled with PHP code, however, which may be daunting for some users.

Reference

Links

Notes

  • Lesson 1: When the install script gives you two seemingly-identical files to chmod, note that even though they have the same name and are in the same directory, they are not the same file -- the path for one has "/admin" in it.
  • Lesson 2: Do not delete all the Manufacturers before adding your own. You will get the following error:

1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-20, 20' at line 1

select manufacturers_id, manufacturers_name, manufacturers_image, date_added, last_modified from manufacturers order by manufacturers_name limit -20, 20

[TEP STOP]