Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Silver_Bullet

Pioneers
  • Posts

    19
  • Joined

  • Last visited

Profile Information

  • Real Name
    Newton

Silver_Bullet's Achievements

  1. Dear Robert, I just realized that your version of the Googlefeeder does not convert the currency from USD to GBP. All prices are stated as "0.00".
  2. jailshell-3.2$ wget -q http://www.XXXXXX.com/XXXXXX/googlefeeder.php >/dev/null jailshell: !/googlefeeder.php: event not found I got the above error. The path is correct. I do not want to reveal my domain and admin directory so I replace it with Xs for this post.
  3. i just realize that the feed is not displaying images. I have ULTIMATE Seo Urls 5 - by FWR Media installed. It was working when I installed Ultimate SEO 2-2.2d-5 previously.
  4. Is there any google feed module that works with ULTIMATE Seo Urls 5? I have been using GoogleBase V 2.5 and it was working with Ultimate SEO 2-2.2d-5 previously. The images are not shown up on Google. Any advice is greatly appreciated.
  5. Thanks for the advice. Your suggestion is working 100% perfectly. I found a spelling mistake in the googlefeeder.php file. If I am not wrong, "OPTIONS_DEFAULT_FFEED_LANGUAGE" should be "OPTIONS_DEFAULT_FEED_LANGUAGE".
  6. Thxs for the reply. What codes should I change to get this effect?
  7. Thxs for the fast response. This is exactly what I did before. All the feeds for different market actually went through and all products were accepted. Instead of seeing one set of products for US and another for UK, I always only see the active product of the last feed that was uploaded. I think the products were still listed in both markets. But can only see one set of performance report. If I am not wrong, I think all the feeds are only generating one set of unique product ID. I have checked the currency is they are correctly converted.
  8. Thank you for this great contribution. I have been using it since the previous version. My current feeds are for the United States market. I want to create a new feed for the UK market. I know I need to create unique product IDs for my US market. How do I do that? Currently, all my UK feeds will overwrite the US feeds. Any advice is greatly appreciated.
  9. I have installed the 2.0.7 module and it works perfectly for domestic rates in USA. However, when the address is international, I cannot get a quote. Always get the "No Rates Returned, :" no matter which country. Any advice is greatly appreciated.
  10. These are the changes that I have made. Includes a few lines up and down. Line 211 ------------------------------------------------ tep_redirect(tep_href_link(FILENAME_CATEGORIES, 'cPath=' . $new_parent_id . '&pID=' . $products_id)); break; case 'insert_product': case 'update_product': if (isset($HTTP_POST_VARS['edit_x']) || isset($HTTP_POST_VARS['edit_y'])) { $action = 'new_product'; } else { if (isset($HTTP_GET_VARS['pID'])) $products_id = tep_db_prepare_input($HTTP_GET_VARS['pID']); $products_date_available = tep_db_prepare_input($HTTP_POST_VARS['products_date_available']); $products_date_available = (date('Y-m-d') < $products_date_available) ? $products_date_available : 'null'; $sql_data_array = array('products_quantity' => (int)tep_db_prepare_input($HTTP_POST_VARS['products_quantity']), 'products_model' => tep_db_prepare_input($HTTP_POST_VARS['products_model']), 'products_price' => tep_db_prepare_input($HTTP_POST_VARS['products_price']), 'products_date_available' => $products_date_available, 'products_weight' => (float)tep_db_prepare_input($HTTP_POST_VARS['products_weight']), 'products_height' => tep_db_prepare_input($HTTP_POST_VARS['products_height']), 'products_length' => tep_db_prepare_input($HTTP_POST_VARS['products_length']), 'products_width' => tep_db_prepare_input($HTTP_POST_VARS['products_width']), 'products_ready_to_ship' => tep_db_prepare_input($HTTP_POST_VARS['products_ready_to_ship']), 'products_status' => tep_db_prepare_input($HTTP_POST_VARS['products_status']), 'products_tax_class_id' => tep_db_prepare_input($HTTP_POST_VARS['products_tax_class_id']), 'manufacturers_id' => (int)tep_db_prepare_input($HTTP_POST_VARS['manufacturers_id'])); if (isset($HTTP_POST_VARS['products_image']) && tep_not_null($HTTP_POST_VARS['products_image']) && ($HTTP_POST_VARS['products_image'] != 'none')) { $sql_data_array['products_image'] = tep_db_prepare_input($HTTP_POST_VARS['products_image']); } if ($action == 'insert_product') { $insert_sql_data = array('products_date_added' => 'now()'); ------------------------------------------------ Line 300 ------------------------------------------------ } elseif ($HTTP_POST_VARS['copy_as'] == 'duplicate') { $product_query = tep_db_query("select products_quantity, products_model, products_image, products_price, products_date_available, products_weight, products_length, products_width, products_height, products_ready_to_ship, products_tax_class_id, manufacturers_id from " . TABLE_PRODUCTS . " where products_id = '" . (int)$products_id . "'"); $product = tep_db_fetch_array($product_query); tep_db_query("insert into " . TABLE_PRODUCTS . " (products_quantity, products_model,products_image, products_price, products_date_added, products_date_available, products_weight, products_length, products_width, products_height, products_ready_to_ship, products_status, products_tax_class_id, manufacturers_id) values ('" . tep_db_input($product['products_quantity']) . "', '" . tep_db_input($product['products_model']) . "', '" . tep_db_input($product['products_image']) . "', '" . tep_db_input($product['products_price']) . "', now(), " . (empty($product['products_date_available']) ? "null" : "'" . tep_db_input($product['products_date_available']) . "'") . ", '" . tep_db_input($product['products_weight']) . "', '" . tep_db_input($product['products_length']) . "', '" . tep_db_input($product['products_width']) . "','" . tep_db_input($product['products_height']) . "', '" . tep_db_input($product['products_ready_to_ship']) . "', '0', '" . (int)$product['products_tax_class_id'] . "', '" . (int)$product['manufacturers_id'] . "')"); ------------------------------------------------- Line 367 ------------------------------------------------- <?php if ($action == 'new_product') { $parameters = array('products_name' => '', 'products_description' => '', 'products_url' => '', 'products_id' => '', 'products_quantity' => '', 'products_model' => '', 'products_image' => '', 'products_price' => '', 'products_weight' => '', 'products_length' => '', 'products_width' => '', 'products_height' => '', 'products_ready_to_ship' => '', 'products_date_added' => '', 'products_last_modified' => '', 'products_date_available' => '', 'products_status' => '', 'products_tax_class_id' => '', 'manufacturers_id' => ''); $pInfo = new objectInfo($parameters); 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_price, p.products_weight, products_length, products_width, products_height, products_ready_to_ship, 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); ------------------------------------------------------- Line 593 ------------------------------------------------------- ?> <tr> <td colspan="2"><?php echo tep_draw_separator('pixel_trans.gif', '1', '10'); ?></td> </tr> <tr> <td class="main"><?php echo TEXT_PRODUCTS_WEIGHT; ?></td> <td class="main"><?php echo tep_draw_separator('pixel_trans.gif', '24', '15') . ' ' . tep_draw_input_field('products_weight', $pInfo->products_weight); ?></td> </tr> <tr> <td class="main"><?php echo TEXT_PRODUCTS_LENGTH; ?></td> <td class="main"><?php echo tep_draw_separator('pixel_trans.gif', '24', '15') . ' ' . tep_draw_input_field('products_length', $pInfo->products_length); ?></td> </tr> <tr> <td class="main"><?php echo TEXT_PRODUCTS_WIDTH; ?></td> <td class="main"><?php echo tep_draw_separator('pixel_trans.gif', '24', '15') . ' ' . tep_draw_input_field('products_width', $pInfo->products_width); ?></td> </tr> <tr> <td class="main"><?php echo TEXT_PRODUCTS_HEIGHT; ?></td> <td class="main"><?php echo tep_draw_separator('pixel_trans.gif', '24', '15') . ' ' . tep_draw_input_field('products_height', $pInfo->products_height); ?></td> </tr> <tr> <td class="main"><?php echo TEXT_PRODUCTS_READY_TO_SHIP; ?></td> <td class="main"><?php echo tep_draw_separator('pixel_trans.gif', '24', '15') . ' ' . tep_draw_checkbox_field('products_ready_to_ship', '1', (($product['products_ready_to_ship'] == '1') ? true : false)); ?></td> </tr> <?php if (isset($pInfo->products_id) && tep_not_null($pInfo->products_id)) { ------------------------------------------------------- Line 669 ------------------------------------------------------- } elseif ($action == 'new_product_preview') { if (tep_not_null($HTTP_POST_VARS)) { $pInfo = new objectInfo($HTTP_POST_VARS); $products_name = $HTTP_POST_VARS['products_name']; $products_description = $HTTP_POST_VARS['products_description']; $products_url = $HTTP_POST_VARS['products_url']; } else { $product_query = tep_db_query("select p.products_id, pd.language_id, pd.products_name, pd.products_description, pd.products_url, p.products_quantity, p.products_model, p.products_image, p.products_price, p.products_weight, p.products_length, p.products_width, p.products_height, p.products_ready_to_ship, p.products_date_added, p.products_last_modified, p.products_date_available, p.products_status, p.manufacturers_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = pd.products_id and p.products_id = '" . (int)$HTTP_GET_VARS['pID'] . "'"); $product = tep_db_fetch_array($product_query); $pInfo = new objectInfo($product); $products_image_name = $pInfo->products_image; } -------------------------------------------------------- I have installed Ultimate SEO. Not sure if that clashes with this UPS XML addon. Greatly appreciate any kind of help. Thxs in advance.
  11. I cannot get it. What is the easiest way for me to fix this problem? I tried using the /admin/categories.php file that came with the package. It is not working too.
×
×
  • Create New...