Questions tagged [oscommerce]

Open source e-commerce application based on PHP & MySQL. The project was started in 2000 by Harald Ponce de Leon and is one of the most popular e-commerce applications.

osCommerce is an open source e-commerce application based on PHP & MySQL. The project was started in 2000 by Harald Ponce de Leon and is one of the most popular e-commerce applications with an estimated usage rate of almost 13,000 registered live stores and an active community with almost 250,000 members. Given the wide spread usage and large developer community, there is a large and diverse range of add-ons available (6000+) making the software easy to extend.

osCommerce is still officially in "development stage", although the current 2.3.4 version is stable. The planned Milestone 3.0 release is a major re-write of the code base. An early release candidate of 3.0 has been available for download since March 2007.

On March 15th 2009 osCommerce Online Merchant v3.0 Alpha 5 was released. With this release the programmers concentrated on core features in hopes of a much faster release schedule. Key features of this release included a new object-oriented framework, new templating system, additional search engine optimization features and updated payment modules among many others.

Announced at the same time was the "Social Coding on Github" initiative which was introduced to attract additional developers to the project in hopes of speeding up the release cycle.

The most popular osCommerce versions today are Phoenix edition and Solomono edition.

353 questions
20
votes
3 answers

Protocol https not supported or disabled in libcurl

I am using Authorize.net in my application(its in OSCOMMERCE) , When the user making payment its returning empty response. I debugged and find that it returning this error: Protocol https not supported or disabled in libcurl I am sending a prober…
AnNaMaLaI
  • 4,064
  • 11
  • 53
  • 93
14
votes
3 answers

Best methods to clean up a hacked site with no clean version available?

I have been asked to fix a hacked site that was built using osCommerce on a production server. The site has always existed on the remote host. There is no offline clean version. Let's forget how stupid this is for a moment and deal with what it…
alex
  • 479,566
  • 201
  • 878
  • 984
9
votes
2 answers

OSCommerce tep_db_input vs tep_db_prepare_input

I am working on a project that uses OSCommerce with MySQL and I'm confused as to when I should use tep_db_input() or tep_db_prepare_input(). I'd assume I should use tep_db_input() around any strings that are being inserted/updated, but then when…
user2391788
  • 93
  • 1
  • 5
8
votes
2 answers

Integrating Magento with a simple static website

Magento is an awesomely powerful ecommerce platform. That said, it is also very complex, and I'd like to know if there is a relatively simple way to utilize Magento as our mISV site's backend to fulfill orders without actually "using" Magento's…
user188162
6
votes
6 answers

Is oscommerce outdated?

Is OSCommerce outdated? I recently started working for a web development company that uses it a lot and I noticed the code base is really messy and has a lot of older php code in there. Being used to something nice like cakePHP or drupal I wasn't…
WalterJ89
  • 1,025
  • 2
  • 7
  • 24
6
votes
14 answers

Prestashop compared to Zen-Cart and osCommerce

I'm considering Prestashop for a new project. It seems to be younger than Zen-Cart and osCommerce. Since I just found it by Google, I'd like to gather comments and experience and comparison of Prestashop to established "brands" like Zen-Cart and…
Viet
  • 17,944
  • 33
  • 103
  • 135
6
votes
2 answers

How to get osCommerce 2.2 running on PHP 5.4?

I recently upgraded PHP to 5.4 and after adding some tweaks now the old osCommerce installation of a customer with lots of customisations is running again, but there is still a problem: if you put an item in your cart the cart stays empty How can I…
rubo77
  • 19,527
  • 31
  • 134
  • 226
5
votes
8 answers

How to Handle 2 Million Products

I work for a web company and we currently use a highly modified version of OSCommerce as our primary ecommerce application, but recently we have been approached by a number of companies with over 2 million individual product models they want to sell…
donatJ
  • 3,105
  • 3
  • 32
  • 51
5
votes
2 answers

Remove OScsid id from URL in osCommerce

I am trying to remove OSCSID id from url in osCommerce but didn't able to success. Below is my code for that. define('HTTP_COOKIE_DOMAIN', 'http://www.domainname.com'); define('HTTPS_COOKIE_DOMAIN', 'http://www.domainname.com'); Is there any other…
Vijay V.
  • 568
  • 2
  • 8
  • 24
4
votes
0 answers

Directory mapping and merging in git

I have an online store running OScommerce and I use git to manage my development, the Official release also uses git. I currently go through the changelog and read each change to each file, type said change, and commit. As you can imagine this takes…
T. Thomas
  • 660
  • 3
  • 10
  • 25
4
votes
1 answer

How do i upgrade osCommerce Database from v2.2 to v2.3

Inside the Oscommerce folder there is an upgrade_guide called upgrade-230.pdf. there it sais If you wish to upgrade to a full v2.3 version, perform only (SQL) Database Changes and use the database with a new v2.3 installation. But how do I make…
rubo77
  • 19,527
  • 31
  • 134
  • 226
3
votes
1 answer

Issue with postfinance module in oscommerce

I have integrated postfinance module for oscommerce. I have done everything mentioned in http://addons.oscommerce.com/info/6442 docs.When I tried to test it in 'test mode' ...after selecting the payment method it is redirecting to 'Order success'…
rajmohan
  • 1,618
  • 1
  • 15
  • 36
3
votes
2 answers

Double slash in OsCommerce shop (e.g. http://www.shop.com//index.php?cPath=427)

The shop version is osCommerce Online Merchant v2.2 RC2a. If a user surfes in the shop, the URL has a double slash before index.php. I looked in the config but cannot find an error. My configure.php in includes folder: define('HTTP_SERVER',…
testing
  • 19,681
  • 50
  • 236
  • 417
3
votes
0 answers

mysql query issue : Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='

I have use php5.3 and already done with "SET NAMES utf8"; I am using oscommerce. PHP code: tep_db_query("SET NAMES utf8"); $result = tep_db_fetch_array(tep_db_query("select customers_email_address from customers where customers_firstname='" .…
Rohit Goyani
  • 1,246
  • 11
  • 26
3
votes
2 answers

does osCommerce have an API?

We work on a lot of integration projects and a customer has a legacy ecommerce site and have asked us to integrate product information, orders and inventory with another platform. Does osCommerce have an API that can be used for this, or will we…
tony.wiredin
  • 617
  • 8
  • 21
1
2 3
23 24