Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

kthursto

Pioneers
  • Posts

    5
  • Joined

  • Last visited

Profile Information

  • Real Name
    Krystle

kthursto's Achievements

  1. SOLVED: The issue was w/ the SQL import. I am posting the solution for anyone coming after who may encounter the same problem. The author of this contribute is correct when he says to recheck the install if there is an issue. I reinstalled everything from scratch including OSCommerce. HOWEVER, the issue was specifically w/ SQL insert. So if you have this same problem, you may NOT need to install everything from scratch. Just check to see if everything was imported correctly on the SQL side. There are 2 files for SQL, import BOTH of them.
  2. I have uninstalled all the way back to OSCommerce and am slooowly adding in each Contribute. It's sloooowly b/c I am quadruple checking each stage. I encountered another "apparent" anomaly. Some of the code instructions in the Word file are different from the code in the included PHP. For example, the snippet below is from the Word doc: $m_source = ''; $thumb = (class_exists('oscthumb') && CFG_MASTER_SWITCH == 'On'); if ($thumb) { preg_match('/"([^"]+)"/',htmlentities ( tep_image(DIR_WS_IMAGES . $product_info['products_image'],'','','','','',5), ENT_NOQUOTES), $image); $m_source=str_replace('&','&',$image[1]); } echo '<a rel="image_group" title="'.$title.'" href="' . ($m_source ? $m_source : DIR_WS_IMAGES . $product_info['products_image']) . '" alt="' . $product_info['products_name'] . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], $product_info['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"', false, 5) . '<br /></a>'; if(!$vertical_format) { echo ''; $row = 1; reset($products_image_array); foreach($products_image_array as $value) { if ($thumb) { Here's that same snippet from the PHP doco: (around line 124) $m_source = ''; $thumb = (class_exists('oscthumb') && CFG_MASTER_SWITCH == 'On'); if ($thumb) { preg_match('/"([^"]+)"/',htmlentities ( tep_image(DIR_WS_IMAGES . $product_info['products_image'],'','','','','',5), ENT_NOQUOTES), $image); $m_source=str_replace('&','&',$image[1]); } echo '<a rel="image_group" title="'.$title.'" href="' . ($m_source ? $m_source : DIR_WS_IMAGES . $product_info['products_image']) . '" alt="' . $product_info['products_name'] . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], $product_info['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '</a><br />'; if(!$vertical_format) { echo ''; $row = 1; reset($products_image_array); foreach($products_image_array as $value) { if ($thumb) { So far it's only product_info.php that seems to have this discrepancy. The dilemma is this: which one is the correct version? Or does it not matter? I do not possess sufficient php know-how to determine the answer.
  3. Whoa! I actually understood this! :D I think I just might be getting the hang of this bold new OS, et al world. Thanks Jack. I will certainly proceed down this path.
  4. Thanks for the great contribute. I wish I could be posting here to thank only; but, the expression of gratitude comes w/ a request for help (of course! <_< ). I have searched thru the forums for an answer. I have double checked the installation files before finally just uploading and overwriting the existing files in my catalog directory. 2 issues still remain. They may be related: 1. The thumbnails are as large as the pop-up files. They are not thumbnails (n.b. I have successfully installed OscThumb; but, it does not appear to have helped). 2. Admin/images does not list all of the settings outlined in the Doc under Instructions (see screenshot below). Do you have any thoughts on what I may have done incorrectly? Thanks in advance for your help.
  5. osCommerce, php, et al newbie here! I was thrown into the deep end of OSCommerce last Friday and have been doing my best to get the hang of it all. I've installed Imprint Txt and encountered an issue while modifying the OSC files. Where it says: This snippet is not found in the document. I am running v2.2 RC2a and STSv4.6. Could there be a related reason? I've been several nights in a row trying to figure out this whole OSCommerce/STS thing... so, I hopefully I am not overlooking something in Imprint Txt due to sheer exhaustion. Thank you!
×
×
  • Create New...