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
0
votes
1 answer

oscommerce tep_db_perform -- update

I am working on the simple function which update the value in database, I am strange that when I add more than 1 where clause, the query didnot work. I have worked on it over 6 hours already. Please help the first query work: …
user3423149
  • 159
  • 1
  • 1
  • 16
0
votes
1 answer

Dont Recieve $_POST variables after Servermigration

I moved my osCommerce shop to my new Plesk-Server, and after that I don't receive any $_POST-Variables. But when I moved it back it started working again. I created a test script: "; print_r( $_POST ); echo ""; ?>
Flo
  • 1,179
  • 3
  • 15
  • 43
0
votes
1 answer

Seemingly Random Hangups/Lags Loading Website

We run an OS Commerce powered web page on our own dedicated server. In April of last year, we were forced to upgrade the server. At around that point, we started to notice that there were seemingly random website outages where our page could not…
0
votes
1 answer

Zone Rates not working oscommerce

Can someone please help me. Under Modules/Shipping I have set up Zone Rates. I have: Zone 1 Countries GB Zone 1 Shipping Table 2.21:3.20,4.41:5.45,11.1:15.85 Zone 2 Countries HU Zone 2 Shipping Table 1.11:5.15,1.66:6.60,2.21:8.05 Zone 3…
raydona
  • 99
  • 1
  • 1
  • 3
0
votes
3 answers

loop through array not returning correct values

I've been staring at this for some time, but can't figure out what's wrong. First of all my code: //Show the products information line by line $item_count = 0 ; for ($i = 0, $n = sizeof($order->products); $i < $n; $i++) { $data2[$i][0] =…
Dennis
  • 35
  • 1
  • 8
0
votes
0 answers

Set default encoding to utf-8 using htaccess

I'm using oscommerce under xampp and I'm trying to set default encoding to utf-8, because some characters are messed up. My database is utf8-turkish-ci. Here's my htaccess code: AddDefaultCharset…
nikel
  • 653
  • 4
  • 13
  • 24
0
votes
1 answer

Oscommerce display default product image and prevent it from deletion

I am working on an oscommerce project where i want to display default product image (i.e no image available) if product image is not uploaded.And even i want it to prevent from deletion.I have tried to upload product not available image for 2-3…
Snehal
  • 137
  • 1
  • 4
  • 16
0
votes
1 answer

Guest checkout addon is not showing 'guest checkout' link in admin panel in OSCOMMERCE version v2.2 RC2a

Currently my OSCOMMERCE is version v2.2 RC2a. I have used this add-on named 'Consolidated Log-in with Guest Checkout for 2.3.1 v1.0'. As per it's doc. I have tried all possible steps but my problem is, in the admin panel area in the category menu…
SagarPPanchal
  • 9,839
  • 6
  • 34
  • 62
0
votes
1 answer

Round prices up to nearest 5 after conversion in oscommerce

A conversion question relating to prices in oscommerce: I am needing for a custom currency conversion to round the USD prices up to the nearest 5$ to avoid prices being displayed at silly prices such as $263. I am trying to convert to an int and…
Rhyso
  • 696
  • 2
  • 9
  • 20
0
votes
4 answers

osCommerce Security Issue

I am planning to integrate some opensource shopping cart with my site and I am bit worried about it's security. Is it that easy to hack osCommerce based website? Because I am thinking to use osCommerce.. Kindly advise.
jose
  • 464
  • 4
  • 7
  • 20
0
votes
1 answer

Return the most frequent result by field value in a for loop?

I have a for-loop that returns the manufacturer name corresponding to a list of products: for ($i = 0, $n = sizeof($order->products); $i < $n; $i++) { $v_query = tep_db_query("SELECT manufacturers_id FROM ".TABLE_PRODUCTS." WHERE products_id =…
0
votes
2 answers

osCommerce SEO url class conflicting Abandoned Sales

I am using CRE Loaded eCommerce where I have used Ultimate SEO url module for search engine friendly urls. But I marked 1 thing that when the SEO URL module is activated, the abandoned sales module goes broken. Normally the admin menu displays like…
dipak_pusti
  • 1,645
  • 2
  • 23
  • 42
0
votes
1 answer

Magento google products site html help

I am trying to paste a google tag into homepage head tag but i cannot find it on index.php Where does it go??
user1849072
  • 11
  • 1
  • 1
  • 3
0
votes
1 answer

OSCommerce price schedule inconsistent behaviour

Working on a problem with an "old" shop in OSCommerce. It's a multistore configuration which is tweaked by the previous owner. I have 2 similar products with a price schedule or quantity price break feature. The problem is 1 of the 2 products is not…
Ben Romijn
  • 81
  • 9
0
votes
1 answer

Query with date range for unsold products in oscommerce

I have the Query below to check for unsold Products in my oscommerce store. $products_query_raw = " select p.products_id, p.products_quantity, p.products_model, pd.products_name from (" . TABLE_PRODUCTS . " p, " . …