Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

fleeced

Pioneers
  • Posts

    267
  • Joined

  • Last visited

Profile Information

Recent Profile Visitors

14,287 profile views

fleeced's Achievements

  1. Looking to use Sage Pay payment option on a 2.2 site I am doing. Is the contribution/module fully working and supported in todays ecommerce requirement, based on the fact that 2.2 is 5 years old now
  2. Installed this, works great but now seen an error on all pages Fatal error: Call to a member function store() on a non-object in (in the top right) **includes/modules/ultimate_seo_urls5/main/usu5.php on line 78 (at the footer) Any ideas how I can fix this? using the latest version from yesterday
  3. It appears to me that changing the look of v2.3.1 is now CSS controlled and based around themes. Does this mean that STS is now considered dated and no longer suitable now? I see the contribution has not been updated for a year. Is the look of OSC now and in the future based around CSS and JQuery?
  4. It is not a permission error that is stopping this for me, I just need to know what code I need to add to redirect.php so that I can track it with Google Analytics. All my other pages work fine as of course they use the STS template but the redirect page, well just redirects as it's supposed to! I suppose I could make it so the redirect page uses the STS template and perhaps comes up with something like "URL link loading" perhaps but ideally I just need to know what analytics code I need to add to redirect.php so I can track it or setup a goal for whoever uses it. I have lacked this feature on my site and struggled with this for over a year now.
  5. I have Google Analytics working with my STS for quite a while now which is great. I got it working using the link below: http://www.oscommerce.com/forums/index.php?s=&showtopic=58541&view=findpost&p=1108611 However I need to track the redirect.php page( and use this as a Goal in Google Analytics). This page is obviously not used with STS so I am unsure how to add any tracking code to it. Can anyone help? What code can I add to the redirect.php page to ensure it tracks too? Thanks in advance Lee
  6. Hi, I am really struggling here, I am looking to add a column into my CSV spreadsheet that will update all my category descriptions as the way I have my store we have over 500+ categories. There are options for Category Name, Category Image but I need to add Categories Description which is part of the Header Tags contribution I have already installed. Just need to know the code I need to add in the easy_populate.php file. The field in PHPMyAdmin is called categories_htc_description and it is in the categories_description table. I have been trying to crack this for ages so any help would be great
  7. Anything else you would recommend Jack. I have an account with lynda.com and am ready to learn. Javascript, Ajax, Flash, XML perhaps?
  8. I am really going to try and build a great site with Oscommerce and want to try and master all parts of it. What type of developer technologies would I need to learn/excel in to acheive this. At the moment i have a list of: PHP MySQL HTML CSS I am looking to cover version 3 too so any new features can be covered too.
  9. I have over 200 categories and get the following message when doing searches, any help much appreciated Products meeting the search criteria Related & Matching Products Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 28 bytes) in /home/******/public_html/includes/modules/category_listing.php on line 51 This is from the advanced_search_result.php file after entering my search term
  10. Has anyone got tracking on redirect.php working with STS and Google Analytics? I have the code in STS and everything tracks fine but redirect.php as this does not use the template file, where and what should I post into redirect.php to get Analytics tracking any redirects: Redirect.php <?php /* $Id: redirect.php,v 1.10 2003/06/05 23:31:31 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ require('includes/application_top.php'); switch ($HTTP_GET_VARS['action']) { case 'banner': $banner_query = tep_db_query("select banners_url from " . TABLE_BANNERS . " where banners_id = '" . (int)$HTTP_GET_VARS['goto'] . "'"); if (tep_db_num_rows($banner_query)) { $banner = tep_db_fetch_array($banner_query); tep_update_banner_click_count($HTTP_GET_VARS['goto']); tep_redirect($banner['banners_url']); } break; case 'url': if (isset($HTTP_GET_VARS['goto']) && tep_not_null($HTTP_GET_VARS['goto'])) { $check_query = tep_db_query("select products_url from " . TABLE_PRODUCTS_DESCRIPTION . " where products_url = '" . tep_db_input($HTTP_GET_VARS['goto']) . "' limit 1"); if (tep_db_num_rows($check_query)) { tep_redirect('http://' . $HTTP_GET_VARS['goto']); } } break; case 'manufacturer': if (isset($HTTP_GET_VARS['manufacturers_id']) && tep_not_null($HTTP_GET_VARS['manufacturers_id'])) { $manufacturer_query = tep_db_query("select manufacturers_url from " . TABLE_MANUFACTURERS_INFO . " where manufacturers_id = '" . (int)$HTTP_GET_VARS['manufacturers_id'] . "' and languages_id = '" . (int)$languages_id . "'"); if (tep_db_num_rows($manufacturer_query)) { // url exists in selected language $manufacturer = tep_db_fetch_array($manufacturer_query); if (tep_not_null($manufacturer['manufacturers_url'])) { tep_db_query("update " . TABLE_MANUFACTURERS_INFO . " set url_clicked = url_clicked+1, date_last_click = now() where manufacturers_id = '" . (int)$HTTP_GET_VARS['manufacturers_id'] . "' and languages_id = '" . (int)$languages_id . "'"); tep_redirect($manufacturer['manufacturers_url']); } } else { // no url exists for the selected language, lets use the default language then $manufacturer_query = tep_db_query("select mi.languages_id, mi.manufacturers_url from " . TABLE_MANUFACTURERS_INFO . " mi, " . TABLE_LANGUAGES . " l where mi.manufacturers_id = '" . (int)$HTTP_GET_VARS['manufacturers_id'] . "' and mi.languages_id = l.languages_id and l.code = '" . DEFAULT_LANGUAGE . "'"); if (tep_db_num_rows($manufacturer_query)) { $manufacturer = tep_db_fetch_array($manufacturer_query); if (tep_not_null($manufacturer['manufacturers_url'])) { tep_db_query("update " . TABLE_MANUFACTURERS_INFO . " set url_clicked = url_clicked+1, date_last_click = now() where manufacturers_id = '" . (int)$HTTP_GET_VARS['manufacturers_id'] . "' and languages_id = '" . (int)$manufacturer['languages_id'] . "'"); tep_redirect($manufacturer['manufacturers_url']); } } } } break; } tep_redirect(tep_href_link(FILENAME_DEFAULT)); ?>
  11. This error can be fixed by chcecking your coding again if you have sts, check you have done this properly: MODIFICATIONS TO FILES: (not all shops begin in the catalog directory so adjust to your site) Add to /catalog/includes/application_top.php at the end of the file right before the last ?> // BOF: WebMakers.com Added: Header Tags Controller v2.5.7 require(DIR_WS_FUNCTIONS . 'header_tags.php'); // Clean out HTML comments from ALT tags etc. require(DIR_WS_FUNCTIONS . 'clean_html_comments.php'); // EOF: WebMakers.com Added: Header Tags Controller v2.5.7 NOTE: if already using FREE-CALL FOR PRICE Add-on you do not need to add the clean_html_comments.php to application_top as you should already have it there. NOTE for STS Users: The above also applies to STS shops but does not always work for some reason. If your STS shop fails, in your sts_output.php file, FIND require(DIR_WS_FUNCTIONS . 'clean_html_comments.php'); require(DIR_WS_FUNCTIONS . 'header_tags.php'); CHANGE TO require_once(DIR_WS_FUNCTIONS . 'clean_html_comments.php'); require_once(DIR_WS_FUNCTIONS . 'header_tags.php');
  12. Can I add that are those fields through a sql query perhaps?
  13. I have added the Header Tags Contoller but I am getting an error whenver I try to access the order scetion of my site- Everything else seems to work fine. The error is 1054 - Unknown column 'ipaddy' in 'field list' select customers_name, customers_company, customers_street_address, customers_suburb, customers_city, customers_postcode, customers_state, customers_country, customers_telephone, customers_email_address, customers_address_format_id, delivery_name, delivery_company, delivery_street_address, delivery_suburb, delivery_city, delivery_postcode, delivery_state, delivery_country, delivery_address_format_id, billing_name, billing_company, billing_street_address, billing_suburb, billing_city, billing_postcode, billing_state, billing_country, billing_address_format_id, payment_method, cc_type, cc_owner, cc_number, cc_expires, currency, currency_value, date_purchased, orders_status, ipaddy, last_modified, customers_id, payment_id from orders where orders_id = '523' [TEP STOP]
×
×
  • Create New...