Girondin Posted May 1, 2008 Share Posted May 1, 2008 Hi ! my website is www.tonyshoes.com and today as I was uploading a new shoe in the server ( through FTP), I couldn't see the pop-up image when I click on it , in the website. It is specific to that shoe, since the pop-up images of all other shoes already on the website do work, but if I upload any other shoe, it will still not work. Here is the link to the specific shoe : HERE if you click on the image, it wont' show the pop-up image. WHy do you think that happened ? I did the usual stuff on Os Commerce, and now I tried with other pictures and it still does not work. PLEASE HELP :'( Link to comment Share on other sites More sharing options...
usernamenone Posted May 2, 2008 Share Posted May 2, 2008 Check your pop up blocker in your browser. Link to comment Share on other sites More sharing options...
prafulkr Posted May 2, 2008 Share Posted May 2, 2008 Hi ! my website is www.tonyshoes.com and today as I was uploading a new shoe in the server ( through FTP), I couldn't see the pop-up image when I click on it , in the website. It is specific to that shoe, since the pop-up images of all other shoes already on the website do work, but if I upload any other shoe, it will still not work. Here is the link to the specific shoe : HERE if you click on the image, it wont' show the pop-up image. WHy do you think that happened ? I did the usual stuff on Os Commerce, and now I tried with other pictures and it still does not work. PLEASE HELP :'( I show ur URL. Right now it is working.. When I was born, I was cryed and everyone around me was smiling. Live our life so at the end, I am the one who is smiling and everyone around me is crying. Link to comment Share on other sites More sharing options...
Girondin Posted May 2, 2008 Author Share Posted May 2, 2008 Check your pop up blocker in your browser. I don't have a pop-up blocker.... Link to comment Share on other sites More sharing options...
Girondin Posted May 2, 2008 Author Share Posted May 2, 2008 I show ur URL. Right now it is working.. It's impossible that you see the pop-up image. I checked on many different computers, it just doesn't work, the problem comes from something in the computer that does not allow anyone to see the pop-up. I didn't do something different than before, I just don't understand. I updated Flash Player from Microsoft, but I don't think that's the reason since in other computers it doesn't work either. I uploaded another shoe now and it doesn't work : HERE, try to see the pop-up ! P.S on IE, it says on the bottom of the page that there is a syntax error, " java script:popupWindow(....)" on line 44. Line 44 of what ???? ANY HELP WOULD BE GREATLY APPRECIATED Link to comment Share on other sites More sharing options...
prafulkr Posted May 2, 2008 Share Posted May 2, 2008 It's impossible that you see the pop-up image. I checked on many different computers, it just doesn't work, the problem comes from something in the computer that does not allow anyone to see the pop-up. I didn't do something different than before, I just don't understand. I updated Flash Player from Microsoft, but I don't think that's the reason since in other computers it doesn't work either. I uploaded another shoe now and it doesn't work : HERE, try to see the pop-up ! P.S on IE, it says on the bottom of the page that there is a syntax error, " java script:popupWindow(....)" on line 44. Line 44 of what ???? ANY HELP WOULD BE GREATLY APPRECIATED Yes on this link popup does not work. Let me think!! When I was born, I was cryed and everyone around me was smiling. Live our life so at the end, I am the one who is smiling and everyone around me is crying. Link to comment Share on other sites More sharing options...
prafulkr Posted May 2, 2008 Share Posted May 2, 2008 It's impossible that you see the pop-up image. I checked on many different computers, it just doesn't work, the problem comes from something in the computer that does not allow anyone to see the pop-up. I didn't do something different than before, I just don't understand. I updated Flash Player from Microsoft, but I don't think that's the reason since in other computers it doesn't work either. I uploaded another shoe now and it doesn't work : HERE, try to see the pop-up ! P.S on IE, it says on the bottom of the page that there is a syntax error, " java script:popupWindow(....)" on line 44. Line 44 of what ???? ANY HELP WOULD BE GREATLY APPRECIATED Thats javascript problem. Try to check popup_image.php where you call javascript function. or post this file in forum. When I was born, I was cryed and everyone around me was smiling. Live our life so at the end, I am the one who is smiling and everyone around me is crying. Link to comment Share on other sites More sharing options...
Girondin Posted May 2, 2008 Author Share Posted May 2, 2008 require('includes/application_top.php'); $navigation->remove_current_page(); $products_query = tep_db_query("select pd.products_name, p.products_image, p.products_image_lrg, p.products_image_xl_1, p.products_image_xl_2, p.products_image_xl_3, p.products_image_xl_4, p.products_image_xl_5, p.products_image_xl_6 from " . TABLE_PRODUCTS . " p left join " . TABLE_PRODUCTS_DESCRIPTION . " pd on p.products_id = pd.products_id where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['pID'] . "' and pd.language_id = '" . (int)$languages_id . "'"); $products = tep_db_fetch_array($products_query); ?> <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> <html <?php echo HTML_PARAMS; ?>> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> <title><?php echo $products['products_name']; ?></title> <base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <script language="javascript"><!-- var i=0; function resize() { if (navigator.appName == 'Netscape') i=40; if (document.images[0]) window.resizeTo(document.images[0].width +77, document.images[0].height+108-i); self.focus(); } //--></script> </head> <body onload="resize();"> <?php if (($HTTP_GET_VARS['image'] ==0) && ($products['products_image_lrg'] != '')) { echo tep_image(DIR_WS_IMAGES . $products['products_image_lrg'], $products['products_name'], LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT); } elseif ($HTTP_GET_VARS['image'] ==1) { echo tep_image(DIR_WS_IMAGES . $products['products_image_xl_1'], $products['products_name'], LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT); } elseif ($HTTP_GET_VARS['image'] ==2) { echo tep_image(DIR_WS_IMAGES . $products['products_image_xl_2'], $products['products_name'], LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT); } elseif ($HTTP_GET_VARS['image'] ==3) { echo tep_image(DIR_WS_IMAGES . $products['products_image_xl_3'], $products['products_name'], LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT); } elseif ($HTTP_GET_VARS['image'] ==4) { echo tep_image(DIR_WS_IMAGES . $products['products_image_xl_4'], $products['products_name'], LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT); } elseif ($HTTP_GET_VARS['image'] ==5) { echo tep_image(DIR_WS_IMAGES . $products['products_image_xl_5'], $products['products_name'], LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT); } elseif ($HTTP_GET_VARS['image'] ==6) { echo tep_image(DIR_WS_IMAGES . $products['products_image_xl_6'], $products['products_name'], LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT); } else echo tep_image(DIR_WS_IMAGES . $products['products_image'], $products['products_name'], LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT); ?> </body> </html> <?php require('includes/application_bottom.php'); ?> Link to comment Share on other sites More sharing options...
Guest Posted May 2, 2008 Share Posted May 2, 2008 It's impossible that you see the pop-up image. I checked on many different computers, it just doesn't work, the problem comes from something in the computer that does not allow anyone to see the pop-up. I didn't do something different than before, I just don't understand. I updated Flash Player from Microsoft, but I don't think that's the reason since in other computers it doesn't work either. I uploaded another shoe now and it doesn't work : HERE, try to see the pop-up ! P.S on IE, it says on the bottom of the page that there is a syntax error, " java script:popupWindow(....)" on line 44. Line 44 of what ???? ANY HELP WOULD BE GREATLY APPRECIATED Usually, it refers to the line of code in what you see when you view source. Link to comment Share on other sites More sharing options...
Girondin Posted May 2, 2008 Author Share Posted May 2, 2008 Usually, it refers to the line of code in what you see when you view source. I checked it, line 44 is empty, it's just after the HEAD section Link to comment Share on other sites More sharing options...
prafulkr Posted May 2, 2008 Share Posted May 2, 2008 I checked it, line 44 is empty, it's just after the HEAD section hey dude it is working just check it out.. When I was born, I was cryed and everyone around me was smiling. Live our life so at the end, I am the one who is smiling and everyone around me is crying. Link to comment Share on other sites More sharing options...
Girondin Posted May 2, 2008 Author Share Posted May 2, 2008 hey dude it is working just check it out.. yah my boss is working on it he doesn't want to tell me the answer how he did it, he said stop going on forums to find out answers to problems related to your work, find the answer by tracing your work itself...lol what was the cause u think ? Link to comment Share on other sites More sharing options...
prafulkr Posted May 2, 2008 Share Posted May 2, 2008 yah my boss is working on it he doesn't want to tell me the answer how he did it, he said stop going on forums to find out answers to problems related to your work, find the answer by tracing your work itself...lol what was the cause u think ? I think the main proble is in javascript. Once it is solved try to match with older file you may certainly find out your problem. When I was born, I was cryed and everyone around me was smiling. Live our life so at the end, I am the one who is smiling and everyone around me is crying. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.