Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

evildc

Archived
  • Posts

    3
  • Joined

  • Last visited

About evildc

  • Birthday 01/13/1990

Profile Information

evildc's Achievements

  1. Hmm, i thought you might be right, so I did an before and after comparison of the source HTML that would be generated. Original <tr> <td class="smallText" align="center">Currently viewing: <a title="" href="http://www.madammilan.com.sg/catalog/product_info.php?products_id=15/"# "></a></td> </tr> Looks like a unclosed quote to me. After I removed that little " sign <tr> <td class="smallText" align="center">Currently viewing: <a title="" href="http://www.madammilan.com.sg/catalog/product_info.php?products_id=15/# "></a></td> </tr>
  2. would like to point you to a bug I found in the install_Catalog.txt instructions. in product_info.php FIND (around line 240) </table></form></td> <!-- body_text_eof //--> ADD ABOVE it: <?php /*** Begin Header Tags SEO ***/ ?> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td class="smallText" align="center"><?php echo TEXT_VIEWING; ?> <?php echo '<a title="' . $header_tags_array['title'] . '" href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $product_info['products_id'], 'NONSSL') . '"/# ' . $header_tags_array['title'] . '">' . $header_tags_array['title']; ?></a></td> </tr> <?php /*** End Header Tags SEO ***/ ?> instead, Add <?php /*** Begin Header Tags SEO ***/ ?> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td class="smallText" align="center"><?php echo TEXT_VIEWING; ?> <?php echo '<a title="' . $header_tags_array['title'] . '" href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $product_info['products_id'], 'NONSSL') . '/# ' . $header_tags_array['title'] . '">' . $header_tags_array['title']; ?></a></td> </tr> <?php /*** End Header Tags SEO ***/ ?> the only different is the . '/# ' . instead of . '"/# ' . just one silly little double quote - Took me nearly 20 minutes to figure out why the page layout got all broken up. Hope you'll update it in your next release. Thanks !
  3. Hello guys ! Thank you for this great contribution. I've got a big problem. Is OpenSSL compulsory for this to work ? i took a look at my CURL section in php server info & openssl is not installed. Since i'm using shared hosting, i fear that i probably won't be allowed to install the OpenSSL toolkit. Is there any way around this ? is it possible to use others like QuickSSL Premium (geotrust) that is offered by the host ?
×
×
  • Create New...