Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Teckrieg

Archived
  • Posts

    16
  • Joined

  • Last visited

Profile Information

  • Real Name
    You Teck

Teckrieg's Achievements

  1. Hello, Be sure to read the instructions on "replace MAX_DISPLAY_ADMIN_SEARCH_RESULT constant with standard MAX_DISPLAY_SEARCH_RESULTS in admin/faq.php. Next, change the following line for split_page_results.php file in both include/classes/split_page_results.php and admin/include/classes/split_page_results.php: $this->sql_query .= " limit " . max($offset, 0) . ", " . $this->number_of_rows_per_page; Change it to: if($offset <0 ) $offset = 0; $this->sql_query .= " limit " . $offset . ", " . $this->number_of_rows_per_page; This should do the trick and I hope that helps. Good Luck =)
  2. I can't access your site through the link.
  3. Hey Mark, I realize where's the error coming from after I did a check on root.php . I left out the codes mentioned on the top section of the file and after including them, every thing's working fine now. Thanks, a really great contribution.
  4. Hey Mark, I realize where's the error coming from after I did a check on root.php . I left out the codes mentioned on the top section of the file and after including them, every time's working fine. Thanks, a really great contribution.
  5. Hey guys. I've a little problem over here. Once SEO-G is activated, every of my page link will be redirected to the cookie_usage.php page. I've gone through the pass post but can't find another resolution. It would be great if someone can pinpoint the areas where the error occur such that I can dive into them and see what's wrong. Thanks.
  6. Hey guys. I've a little problem over here. Once SEO-G is activated, every of my page link will be redirected to the cookie_usage.php page. I've gone through the pass post but can't find another resolution. It would be great if someone can pinpoint the areas where the error occur such that I can dive into them and see what's wrong. Thanks.
  7. Hey, For Warning: Division by zero in /opt/lampp/htdocs/xbox/catalog/admin/includes/classes/split_page_results.php on line 33 Just follow the instructions on "replace MAX_DISPLAY_ADMIN_SEARCH_RESULT constant with standard MAX_DISPLAY_SEARCH_RESULTS in admin/faq.php" will do. Please be reminded that you must change all of the variables in within the file. The very next error is very much an sql error. I believe that there's missing queries within the sql file. Uncomment simply means removing the tag to make the codes active instead of coding them as a comment. // '<a href="' . tep_href_link(FILENAME_FAQ) . '" class="menuBoxContentLink">' . BOX_TOOLS_FAQ . '</a><br>'. In the above example, by removing " // " would simply uncomment the code. Hope that helps =)
  8. Hi guys, Can someone enlighten me what are the benefit of having a store feed? Thanks! Regards, Teckrieg
×
×
  • Create New...