Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How i can drop massdrop the prices?


semugg

Recommended Posts

Hello, Sorry cannot be of help but I have SAME ERROR message under "Specials", and Nothing shows in Specials area. Although I havent entered any specials myself, just deleted what was there to set up my store. My Host will not help me (says i must reinstall) having done this already and done more work, I do want to save my store.

 

DO NOT KNOW PHP and just basic HTML user (and Housewife!).

 

Jen :D

Link to comment
Share on other sites

Hello, my question is written on topic.

 

I've thought i can make it with Admin Cp-> Catalog-> Specials .. but when get there i see :

 

specials0eb.jpg

 

Can anyone help?

 

See here.

 

This issue is also fixed in the latest update 051113 - see the downloads section.

 

And to save you scrolling all the way to the bottom, here's the official fix: -

 

Line 67 in catalog/includes/classes/split_page_results.php must be changed from:

 

$this->sql_query .= " limit " . $offset . ", " . $this->number_of_rows_per_page;

to:

$this->sql_query .= " limit " . max($offset, 0) . ", " . $this->number_of_rows_per_page;

 

Line 38 in catalog/admin/includes/classes/split_page_results.php must be changed from:

 

$sql_query .= " limit " . $offset . ", " . $max_rows_per_page;

to:

$sql_query .= " limit " . max($offset, 0) . ", " . $max_rows_per_page;

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...