Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Job

Members
  • Posts

    30
  • Joined

  • Last visited

Profile Information

  • Real Name
    Joop Ongenae

Job's Achievements

  1. I'll send you the files. I don't mind you using my input, that's what the community is for.
  2. Sorry, copied from the wrong file. This is the wright code. RewriteRule ^(.*)-i-([0-9]+).html$ information.php?info_id=$2&%{QUERY_STRING} But you allready tried that.
  3. RewriteRule ^(.*)-i-([0-9]+).php$ information.php?info_id=$2&%{QUERY_STRING} Out of htaccess from ultimate SEO.
  4. Yes, I know, I have created the webshop I linked to. I thought you might be interested in the way it's done.
  5. item 2, both effects: Do you mean like in this site ?
  6. Found a solution: In includes/classes/display_images.php: replace: <script language="javascript"><!-- document.write(\'<a href="' . (!$this->onpagemenu ? 'java script:popupWindow(\\\'' : '') . tep_href_link( $this->linkurl, ($item==0&&$this->groupwithparent=='true'?'pID='.$products_id:'imagesID='.$addimages_images[$item]['id'])) . (!empty($_GET['products_id']) ? '&products_id='.$_GET['products_id'] : '') . (!empty($_GET['cPath']) ? '&cPath='.$_GET['cPath'] : '') . (!$this->onpagemenu ? '\\\')' : '') . '"' . $t_menu_mouseover . '>' . tep_image(DIR_WS_IMAGES . $addimages_images[$item]['image'], addslashes($addimages_images[$item]['desc']), (ADDIMAGES_RESTRICT_PARENT=='false'&&$item==0&&$this->groupwithparent=='true'?'':$addimages_image_width), (ADDIMAGES_RESTRICT_PARENT=='false'&&$item==0&&$this->groupwithparent=='true'?'':$addimages_image_height), 'hspace="5" vspace="5"') . '<br>' . (!empty($addimages_images[$item]['desc'])?addslashes($addimages_images[$item]['desc']):TEXT_CLICK_TO_ENLARGE) . '</a>\'); //--></script> with <script language="javascript"><!-- document.write(\'<a href="images/' . $addimages_images[$item]['image'] . '"target="_blank" rel="lightbox[group]" title="' . addslashes($addimages_images[$item]['desc']) .'">' . tep_image(DIR_WS_IMAGES . $addimages_images[$item]['image'], addslashes($addimages_images[$item]['desc']), (ADDIMAGES_RESTRICT_PARENT=='false'&&$item==0&&$this->groupwithparent=='true'?'':$addimages_image_width), (ADDIMAGES_RESTRICT_PARENT=='false'&&$item==0&&$this->groupwithparent=='true'?'':$addimages_image_height), 'hspace="5" vspace="5"'). '</a>\'); //--></script> In product_info.php use <script language="javascript"><!-- document.write('<?php echo '<a href="images/' . $product_info['products_image'] . '"target="_blank" rel="lightbox[group]" title="' . $product_info['products_name'] . '">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], addslashes($product_info['products_name']), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>'; ?>'); //--></script> The rel="lightbox[group]" differs. All images will now show in the lightbox-popup (image 1 of........etc)
  7. Same problem here. In a testshop on the same server, but in subdirectory, everything works 100%. Liveshop however is placed in the root. In admin/includes/functions/headertags.php I put "includes/" after several instances of DIR_FS_CATALOG. Error was gone then, but list of files was not available.
  8. change $from_str .= ", " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_CATEGORIES . " c, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c"; to $from_str .= ", " . TABLE_PRODUCTS_DESCRIPTION . " , " . TABLE_CATEGORIES . " , " . TABLE_PRODUCTS_TO_CATEGORIES . " ";
  9. Before submitting them to Google, run them yourself in your browser. If an error occurs, open up the files and delete or comment out the line where it includes application_bottom.php, and it will then work
  10. Don't know if somebody is still interested in the solution for this problem, but I found it: In checkout_proces.php one piece of code is missing, so the right calculation is not possible. Put this: $payment = $currencies->price(); after if ($payment_class->code =='installment'){ and the email will show the right figures.
×
×
  • Create New...