Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

surfalot

Pioneers
  • Posts

    2,312
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by surfalot

  1. after you log in again it doesn't load the configurator? have you tried the link from the utility? Admin > catalog > Additional Images > right column ?
  2. the main difference it automatic thumbing vs manual thumbing and 6 pics vs unlimited pics. I can't remember if ultrapics has water marking, but AI does. I created the latest AI because automatic thumbnailing can cause a load problem on large shops that will degrade the performance of the site while your customers are browsing products. AI allows you to determine when the thumbnailing is done using a utility to perform it in bulk or when the image is uploaded. In addition to that, you can add unlimited numbers of additional images. AI also has a more robust display engine with lots of ways to display your product images. If you want automatic thumbnailing and have less then a couple hundred products and don't need more then 6 images per product, ultrapics is for you.
  3. both Additional Images and Ultrapics address that issue. (neither are compatible with oscThumbs)
  4. that's definitely a bug. in create_order_process.php, find: 'orders_status_id' => $new_value, replace with: 'orders_status_id' => DEFAULT_ORDERS_STATUS_ID, that should put the default in the history correctly.
  5. the only thing I can think of is maybe you have doubled the inclusion of the compatibility.php script in the includes/application_top.php script. The location of this changed after the RCx releases and often folks will think it's new code, but is actually simply moved.
  6. sounds to me like you were not quite as careful merging the code as necessary. There isn't anything specific I can offer for help other then to restore the 3 column code and look at the merge a little more carefully.
  7. sorry, no plans to do anything like that. I would think the best place for vids is embedded in the text.
  8. What contrib version are you using and what osC version? Always try to include as much info as you can with your post. Maybe try the version I uploaded, as mentioned just above, there seem to be a number odd problems with the latest couple that have been offered.
  9. sorry, not that one either. Additional Image, ultrapics, older morepic 6 1.3 or previous.
  10. this may sound like a silly question but, have you install the ultrapics contribution? The error is saying it wasn't fully installed in the database at the moment.
  11. The support for SPPC was created for an older version of SPPC. I don't know if it works with the current version. You can enable it and try it. *ALWAYS BACKUP*
  12. mainly because our suppliers and distributors don't know our shop's products IDs. The only way to match our supplier data sheets with the shop's products is to use some COMMON identifier, like the model number. Backup warnings were everywhere, hope you made one.
  13. have you installed an html email contribution? That is what the other person was saying near the top of the last page. The reason it wasn't working is that (I believe) the person that contributed that fail to mention what contribution you needed to install to make it work. Which, if that is the case, why the newer versions are blowing-up for folks. I don't know what the difference is between the versions. I haven't had any time to evaluate them. You should check the changelog in the contrib packages, or use a compare tool on the folders. All I can tell you is that I'm see a lot of weird questions about it's functionality and the contributors don't seem to be hanging around to support it.
  14. there is only one that was uploaded under my id.
  15. sure, use the version I uploaded. It works fine.
  16. the error in that sql should be corrected as follows: DROP TABLE IF EXISTS `eorder_text`; CREATE TABLE `eorder_text` ( `eorder_text_id` tinyint(3) unsigned NOT NULL default '0', `language_id` tinyint(3) unsigned NOT NULL default '1', `eorder_text_one` text, PRIMARY KEY (`eorder_text_id`, `anguage_id`) ) ; but my guess is there is more to this then adding the table.
  17. nope, sure don't. But if you read through the settings at the top of the easypopulate.php file (as you were begged to by the install directions), you will probably be quite surprised at how easy it is to add additional fields to the products and products_description tables. :thumbsup:
  18. the only thing I can tell you about the 2.76i version and QTPro is that it is untested by myself and very old code.
  19. the only way a duplicate model number can appear is if the model number changes. If you would like further help, please see the how to ask for help section of the docs accompanying the latest version.
  20. if you do not have the following function in your /admin/includes/functions/html_output.php file, then add it in. //// // Hide form elements function tep_hide_session_id() { $string = ''; if (defined('SID') && tep_not_null(SID)) { $string = tep_draw_hidden_field(tep_session_name(), tep_session_id()); } return $string; }
  21. I would guess you have to upload a replacement image to the correct folder for the button that has not been resized. all you need to do is put rel="lightbox[group]" in the link tag for image and the 5 lines following <!-- BOF: Lightbox Contribution --> in the head tag of the page and you have a lightbox.
  22. I see where your problem may be. Do you have a popup sized image defined for that product? This change in the product_info.php will display the thumb if the popup image is not present: find: if (ENABLE_LIGHTBOX == 'true') { // lightbox addon ?><script language="javascript"><!-- document.write('<?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $product_info['products_image_pop']) . '"target="_blank" rel="lightbox[group]" title="'. $product_info['products_name'].'" >' . tep_image(DIR_WS_IMAGES . (!empty($product_info['products_image_med'])?$product_info['products_image_med']:(!empty($product_info['products_image_pop'])?$product_info['products_image_pop']:(!empty($product_info['products_image'])?$product_info['products_image']:''))), addslashes($product_info['products_name']), (ADDIMAGES_RESTRICT_PARENT=='true'?DISPLAY_IMAGE_WIDTH:''), (ADDIMAGES_RESTRICT_PARENT=='true'?DISPLAY_IMAGE_HEIGHT:''), 'hspace="5" vspace="5"') . '<br>' . (!empty($product_info['products_image_description'])?$product_info['products_image_description']:TEXT_CLICK_TO_ENLARGE) . '</a>'; ?>'); //--></script> <noscript> <?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . (!empty($product_info['products_image_pop'])?$product_info['products_image_pop']:$product_info['products_image'])) . '" target="_blank" rel="lightbox[group]" title="'.$product_info['products_name'].'">' . tep_image(DIR_WS_IMAGES . (!empty($product_info['products_image_med'])?$product_info['products_image_med']:(!empty($product_info['products_image_pop'])?$product_info['products_image_pop']:(!empty($product_info['products_image'])?$product_info['products_image']:''))), $product_info['products_name'], (ADDIMAGES_RESTRICT_PARENT=='true'?DISPLAY_IMAGE_WIDTH:''), (ADDIMAGES_RESTRICT_PARENT=='true'?DISPLAY_IMAGE_HEIGHT:''), 'hspace="5" vspace="5"') . '<br>' . (!empty($product_info['products_image_description'])?$product_info['products_image_description']:TEXT_CLICK_TO_ENLARGE) . '</a>'; ?> </noscript><?php } else { replace with: if (ENABLE_LIGHTBOX == 'true') { // lightbox addon ?><script language="javascript"><!-- document.write('<?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . (!empty($product_info['products_image_pop'])?$product_info['products_image_pop']:$product_info['products_image'])) . '"target="_blank" rel="lightbox[group]" title="'. $product_info['products_name'].'" >' . tep_image(DIR_WS_IMAGES . (!empty($product_info['products_image_med'])?$product_info['products_image_med']:(!empty($product_info['products_image_pop'])?$product_info['products_image_pop']:(!empty($product_info['products_image'])?$product_info['products_image']:''))), addslashes($product_info['products_name']), (ADDIMAGES_RESTRICT_PARENT=='true'?DISPLAY_IMAGE_WIDTH:''), (ADDIMAGES_RESTRICT_PARENT=='true'?DISPLAY_IMAGE_HEIGHT:''), 'hspace="5" vspace="5"') . '<br>' . (!empty($product_info['products_image_description'])?$product_info['products_image_description']:TEXT_CLICK_TO_ENLARGE) . '</a>'; ?>'); //--></script> <noscript> <?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . (!empty($product_info['products_image_pop'])?$product_info['products_image_pop']:$product_info['products_image'])) . '" target="_blank" rel="lightbox[group]" title="'.$product_info['products_name'].'">' . tep_image(DIR_WS_IMAGES . (!empty($product_info['products_image_med'])?$product_info['products_image_med']:(!empty($product_info['products_image_pop'])?$product_info['products_image_pop']:(!empty($product_info['products_image'])?$product_info['products_image']:''))), $product_info['products_name'], (ADDIMAGES_RESTRICT_PARENT=='true'?DISPLAY_IMAGE_WIDTH:''), (ADDIMAGES_RESTRICT_PARENT=='true'?DISPLAY_IMAGE_HEIGHT:''), 'hspace="5" vspace="5"') . '<br>' . (!empty($product_info['products_image_description'])?$product_info['products_image_description']:TEXT_CLICK_TO_ENLARGE) . '</a>'; ?> </noscript><?php } else {
×
×
  • Create New...