Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

mikesww

Pioneers
  • Posts

    4
  • Joined

  • Last visited

Posts posted by mikesww

  1. maybe you have javascript turned off. I didn't know AOL still had a browser. Is it a rebranded browser?

    I don't know if it's actually an AOL browser anymore but I do know that they filter a lot of stuff before it hits the user screen. Apparently there is a known problem similar to what I am seeing with image sizes according to Java. Here is the link in case anybody else is interested:

     

    http://www.java.com/en/download/help/aol.xml

     

    I'll just keep tinkering and if I get it to do what I want I'll post it.

     

    Thanks again for all your help!!

    Mike

  2. The display class can't find your images. Commonly folks have either an extra slash or a missing slash in their includes/configure.php configuration file.

     

    Additional Images uses this combination from that file to find your image store: DIR_FS_CATALOG + DIR_WS_IMAGES

     

    combined should be something like /home/mysite/public_html/catalog/images/ on a cPanel server. Yours may differ of course.

    I think my configure.php is correct. It seems to be a browser specific problem.... When I open the pop-up in IE7, after the image loads the window resizes like it should. When I use the AOL browser, it stays at the 100 X 100 size. I wonder if I need some kind of check for AOL?

    Thanks

  3. I'm hoping someone will be able to read this and know exactly what is happening and give me a little direction.

     

    My problem is on the product info page with the pop-up routine. The image I want in my pop-up is correct but the window size does not resize to fit the image. It doesn't seem to be picking up the image dimensions, it stays at a width of 100 and height of 100. I have this site running on my local PC and everything runs great but when I upload everything to the host, I run into the window sizing problem. I have gone thru everything, the code, the admin settings, the scripts etc. and everything is the same. I hope this rings a bell with someone.

     

    One thing I should mention is ... my local PC is Windows XP but I don't know if that would be a problem or not since everything else is working properly on the PC and the Host.

     

    Thanks

  4. THANKS FOR THIS GREAT ADD-ON!

     

    When I go to the New Products (products_new.php). I have a Problem here:

     

     

    While I move the mouse to the product thumbnail image , a words line appear above the image:

     

    for example:

     

     

    when i move the mouse to my product "ABC" in general the word "ABC" with a yellow background will appears .

     

     

     

    But in my store , the word appears as : ABC <img src= \includes\languages\english\images\buttons\icon_newarrival.gif border="0" alt= "new: ABC" title ="new : ABC" width="13" height="14">

     

    BUT move mouse to the store's original image, this problem don't appear.

     

     

    I have installed the New_Products_Icon_1.4 ADD-ON. and integrated some code in products_new.php as below in products_new.php:

     

    $products_new_query_raw = "select p.products_id, pd.products_name,pd.short_desc, p.products_image, p.products_price, p.products_tax_class_id, p.products_date_added, m.manufacturers_name from " . TABLE_PRODUCTS . " p left join " . TABLE_MANUFACTURERS . " m on (p.manufacturers_id = m.manufacturers_id), " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "' order by p.products_date_added DESC, pd.products_name";

     

     

     

     

     

     

    $products_new_query_raw = "select p.products_id, pd.products_name,pd.short_desc, p.products_image, p.products_price, p.products_tax_class_id, p.products_date_added, m.manufacturers_name from " . TABLE_PRODUCTS . " p left join " . TABLE_MANUFACTURERS . " m on (p.manufacturers_id = m.manufacturers_id), " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "' order by p.products_date_added DESC, pd.products_name";

     

     

     

     

    THANKS VERY MUCH! :)

×
×
  • Create New...