Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

fuckoff

Pioneers
  • Posts

    7
  • Joined

  • Last visited

Everything posted by fuckoff

  1. After posting it occurred to me that I could just turn off STS. MVS works without STS active. The problem is that when I am not logged in, I can't get quote.
  2. I have recently installed MVS on my site and most of the functionality seems to work fine. The problem that I am having is that when trying to use the shipping estimator, it returns a blank page. I have also tried to use the test.php but it does the same. When the shipping estimator page loads, there no fields to enter any additional information. I am not sure if there are any others trying to use MVS in conjunction with STS and I am not sure if that STS is in any way even a factor with the problems I am experiencing. I have installed and tested some of the modules without using the shipping estimator and they present the shipping costs.
  3. I think it was the Admin Directory: that was giving me problems rather than the admin account name and password. After updating the configuration it always shows as just http so It was helpful to edit the sitemonitor_configure.php directly. It's working now and backed up for safe keeping ;) Thanks for your time. -Jim
  4. I installed Site Monitor but cannot run the Admin because of the "Error Your username is invalid. Please change it and try again" I try to leave it empty or enter any of the admin accounts, but keep getting the same error. Additionally, the Admin Directory can't be changed. If the http is erased, then it seems to get the right directory, but if I choose update, it is never saved.
  5. Thank You Chris, I will give it a try. -Jim
  6. Currently I have Simple multi image addon and am wondering how to get it working with Header Tags SEO. The following is the modified code for simple multi image addon which is also code that Header Tags SEO suggests another modification: // Simple multi image addon 'products_image_array' => '', 'products_price' => '', 'products_weight' => '', 'products_date_added' => '', 'products_last_modified' => '', 'products_date_available' => '', 'products_status' => '', 'products_tax_class_id' => '', 'manufacturers_id' => ''); $pInfo = new objectInfo($parameters); $products_image_array = array(); if (isset($HTTP_GET_VARS['pID']) && empty($HTTP_POST_VARS)) { $product_query = tep_db_query("select pd.products_name, pd.products_description, pd.products_url, p.products_id, p.products_quantity, p.products_model, p.products_image, p.products_image_array, p.products_price, p.products_weight, p.products_date_added, p.products_last_modified, date_format(p.products_date_available, '%Y-%m-%d') as products_date_available, p.products_status, p.products_tax_class_id, p.manufacturers_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = '" . (int)$HTTP_GET_VARS['pID'] . "' and p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "'"); $product = tep_db_fetch_array($product_query); $products_image_array = unserialize($product['products_image_array']); if (!is_array($products_image_array)) $products_image_array = array(); // EOF Simple multi image addon /*** Begin Header Tags SEO ***/ if (isset ($HTTP_GET_VARS['pID']) && (!$HTTP_POST_VARS) ) { $product_query = tep_db_query("select pd.products_name, pd.products_description, pd.products_head_title_tag, pd.products_head_desc_tag, pd.products_head_keywords_tag, pd.products_url, p.products_id, p.products_quantity, p.products_model, p.products_image, p.products_price, p.products_weight, p.products_date_added, p.products_last_modified, date_format(p.products_date_available, '%Y-%m-%d') as products_date_available, p.products_status, p.products_tax_class_id, p.manufacturers_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = '" . (int)$HTTP_GET_VARS['pID'] . "' and p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "'"); $product = tep_db_fetch_array($product_query); /*** End Header Tags SEO ***/
  7. I am using Simple multi image addon and want to add Header Tags SEO, but can't simply replace the code without breaking things. if (isset($HTTP_GET_VARS['pID']) && empty($HTTP_POST_VARS)) { // Simple multi image addon $product_query = tep_db_query("select pd.products_name, pd.products_description, pd.products_url, p.products_id, p.products_quantity, p.products_model, p.products_image, p.products_image_array, p.products_price, p.products_weight, p.products_date_added, p.products_last_modified, date_format(p.products_date_available, '%Y-%m-%d') as products_date_available, p.products_status, p.products_tax_class_id, p.manufacturers_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = '" . (int)$HTTP_GET_VARS['pID'] . "' and p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "'"); $product = tep_db_fetch_array($product_query); $products_image_array = unserialize($product['products_image_array']); if (!is_array($products_image_array)) $products_image_array = array(); // EOF Simple multi image addon /*** Begin Header Tags SEO ***/ if (isset ($HTTP_GET_VARS['pID']) && (!$HTTP_POST_VARS) ) { $product_query = tep_db_query("select pd.products_name, pd.products_description, pd.products_head_title_tag, pd.products_head_desc_tag, pd.products_head_keywords_tag, pd.products_url, p.products_id, p.products_quantity, p.products_model, p.products_image, p.products_price, p.products_weight, p.products_date_added, p.products_last_modified, date_format(p.products_date_available, '%Y-%m-%d') as products_date_available, p.products_status, p.products_tax_class_id, p.manufacturers_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = '" . (int)$HTTP_GET_VARS['pID'] . "' and p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "'"); $product = tep_db_fetch_array($product_query); /*** End Header Tags SEO ***/
×
×
  • Create New...