Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Manufacturer link to homepage NOT WORK


xtcsoft

Recommended Posts

Can you be a bit more specific please.

Where is the link?

Do you mean the links from the drop-down menu in the manufacturers info box?

Or have you created a link yourself on one of your pages to the site of the manufacturer?

Link to comment
Share on other sites

This is an live exmple: http://operacd.gr/catalog/product_info.php?products_id=600

 

Please try to click the link "Brilliant Classics Homepage"

 

The new window link is http://operacd.gr/catalog/www.joanrecords.com , but the good is the www.joanrecords.com

 

have you changed the relevant code in the box?

 

if not, the part in your cinfigure.php could be incorrect

 

I tried to click on that manufacturer's homepage but got a page not found on redirect.

:-)

Monika

 

addicted to writing code ... can't get enough of databases either, LOL!

 

my toolbox: Textpad - Compare and Merge - phpMyAdmin - WS_FTP - Photoshop - How to search the forum

 

Interactive Media Award July 2007 ~ category E-Commerce

my advice on the forum is for free, PMs where you send me work are considered consultation which I charge for ...

Link to comment
Share on other sites

although this may not be the solution to this particular problem the catalog\redirect.php has a problem not using the language_id to filter the result from the query.

 

		$check_query = tep_db_query("select products_url from " . TABLE_PRODUCTS_DESCRIPTION . " where products_url = '" . tep_db_input($HTTP_GET_VARS['goto']) . "' limit 1");

 

Should been

		$check_query = tep_db_query("select products_url from " . TABLE_PRODUCTS_DESCRIPTION . " where language_id = '" . (int)$languages_id . "' and products_url = '" . tep_db_input($HTTP_GET_VARS['goto']) . "' limit 1");

Without the filtering it can cause problems not picking up the correct url from the products_description table

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...