Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

desiredin

Members
  • Posts

    275
  • Joined

  • Last visited

Posts posted by desiredin

  1. The problem is fixed. The fix?

    http://www.nabble.com/IE7-bug-(position)-td15976526.html

     

    The DOCTYPE needs to be set to strict.

    So the DOCTYPE for product_info.php needs to be changed to:

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

     

    Once changed, it works like a charm.

     

    BUT HOLD ON!!!!!!! I am not sure how OSC will work with DOCTYPE changed??? Is this going to cause any issues? I couldn't say.

     

    At any rate, I am going to do a clean install, and follow the directions from my contribution, with changed DOCTYPE and see what happens. Stay tuned. :D

  2. However, it looks like there are problems with IE7 on Windows Vista (haven't tried on XP but who knows?).

     

    Confirmed last night on XP. This code isn't working with IE7. I'll see what I can do about getting it working in the next day or so. But feel free to see if you can see where I've messed up yourself if you have time.

  3. Sorry guys. Just found the first major bug with my code.

     

    On Windows XP: Everything is working good with the following browsers

    Mozilla Firefox 2.0.0.13 (2 systems)

    Internet Explorer 6.0.2 (3 systems)

     

    However, it looks like there are problems with IE7 on Windows Vista (haven't tried on XP but who knows?).

    Internet Explorer 7 (2 systems)

     

    I do know it's a code problem, as everything works find on Michael Jackson's website. I'll try and find what the problem is and see if I can fix it......I'm no programmer. Heh. ;)

  4. Looks like your code for the enlarged pop-up is different than what the contribution shows??? Backup your file and use this instead of the other code you have there.

     

    <script language="javascript"><!--
    document.write('<?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $product_info['products_image']) . '" target="_blank" rel="lightbox" title="'.addslashes(addslashes($product_info['products_name'])).'" >' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], addslashes(addslashes($product_info['products_name'])), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>'; ?>');
    //--></script>
    <noscript>
    <?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . addslashes(addslashes($product_info['products_name'])) . '" target="_blank" rel="lightbox" title="'.addslashes(addslashes($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>'; ?>');
    </noscript>
    */ ?>
    <script language="javascript"><!--
    document.write('<?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $product_info['products_image']) . '" target="_blank" rel="lightbox" title="'.addslashes($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>
    <noscript>
    <?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $product_info['products_image']) . '" target="_blank" rel="lightbox" title="'.addslashes($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>'; ?>');
    </noscript>

  5. Here is what I have put in my product's description (so you can see how it all works) to get everything there (except the standard "enlarge image"). That simply just works once you upload the image for your product.

     

    <p align="center"><a rel="shadowbox;width=320;height=240" class="option" title="Curious Cat" href="/video/cat.wmv""><img src="/images/playdemo.jpg" border="0"></a></p>
    
    <div align="center">
     <table class="thumbs" border="0" cellspacing="0" cellpadding="0">
       <tr> 
         <td><a rel="shadowbox[MustangThumbs];options={counterType:'skip',continuous:true,animSequence:'sync'}" href="/images/mustang/red.jpg"><img src="/images/mustang/red-thumb.jpg" alt="Red"></a></td>
         <td><a rel="shadowbox[MustangThumbs];options={counterType:'skip',continuous:true,animSequence:'sync'}" href="/images/mustang/blue.jpg"><img src="/images/mustang/blue-thumb.jpg" alt="Red"></a></td>
         <td><a rel="shadowbox[MustangThumbs];options={counterType:'skip',continuous:true,animSequence:'sync'}" href="/images/mustang/grey.jpg"><img src="/images/mustang/grey-thumb.jpg" alt="Red"></a></td>
       </tr>
     </table>
    </div>
    <p align="center"> <a rel="shadowbox" class="option" title="Click To Surf A Different Page On This Site (perhaps for product comparison?" href="http://www.visceralmagic.com/login.php">Click 
     To Surf A Different Page On This Site (perhaps for product comparison)? Click 
     Me. </a><br>
     <a rel="shadowbox" class="option" title="Perhaps you want to google something?" href="http://www.google.com/">Perhaps 
     you want to google something? Click Me.</a> </p>
    <p align="center"><a rel="shadowbox" href="http://www.oscommerce.com"><img src="/images/oscthumbs.jpg" width="150" height="120" border="0" alt="How about visiting OSCommerce's Website?"></a> 
    </p>
    <p align="center">Or how about OSCommerce's Website? Just click the thumbnail 
     above...</p>

  6. Here's some capabilities I've thrown up: http://www.visceralmagic.com/product_info.php?products_id=7

    You can see more of what Michael Jackson's Shadowbox is capable of at http://mjijackson.com/shadowbox/

     

    From that URL on my server I have provided, on the view page link, you are able to create an account through that page, so it may come in handy for someone. Perhaps create duplicate pages (login and create account) with script to automatically close the window after an account has been created or user had logged on? Would be a nifty little feature so the customer isn't taken away from the product he/she was looking at. Or support forums for the product.

  7. Having placement issues. With IE, I have the image box centered in the top of the screen, right under the tool/address bar. In Firefox, the image is centered about an inch and a half down the page below the tool/address bar.

     

    My preferece would be as close to the center of the screen as possible in both browsers. My images are generally around 200x200 and it really looks ridiculous (especially in IE) with the image so small, being stuck right up to the top. Heh.

     

    I am having a heck of a time getting that accomplished through the CSS. Can't even seem to change the position slightly. Heh. Can someone point me in the right direction please?

  8. I have had FEC Run for a few months and have decided I would like customer to create and account for several reasons. Is it possible to change the code to make an account instead of offering with out uninstalling the contribution?

     

    Have you found a solution to this problem?

     

    I love this contribution, however, a new shop I am putting together will have downloadable products (exclusively), so I require all customers to have accounts, so they can log in to retrieve their downloads.

     

    Anyone have similar issues? And/or fix for us?

  9. I am having similar issues. Been using OSCommerce on my old shop for about 5 years now and am opening a new shop, and went with OSCommerce again. Brand-new, and clean installation from last night. Haven't done anything to the install yet except getting the stock install up and running, and installing this contribution.

     

    Everything installed in the database, all files loaded, admin/graphs set to 777.

     

    The code to log the stats into the database is working. Plenty getting added to the database as I can see through my phpmyadmin. However, when I try to run the stats pages, it comes up blank. Checked the access and error logs for that site, and no errors from the web server are being generated. No errors being disayed in my internet explorer or through OSCommerce. No files are being generated in the graphs directory. Tried refreshing the page manually, and still nothing.

     

    Anyone have any ideas?

  10. in includes/modules/dynamic_sitemap.php find this code:

    around line 109?...

    $engFile = DIR_WS_LANGUAGES . $language . '/' . $file;
    	if (file_exists($engFile) && IsViewable($file)) 
    	{
    	   if (strpos($file, "product_info.php")		   !== FALSE ||
    		   strpos($file, "create_account_success.php") !== FALSE ||
    		   strpos($file, "links_submit_success.php")   !== FALSE ||
    		   strpos($file, "checkout_process.php")	   !== FALSE  )
    		 continue;
    
    	   $fp = file($engFile);

     

    and add the pages there you dont wanna include. Sure thats how i did it

     

    Sorry, I should have been more specific. I still want the pages linked, but I want them linked unsecure with http rather than https.

  11. I have been using this sitemap for some time. One thing that has been bothering me, is that the sitemap generated is generating my pages for the secure site. https. Not a big deal, but when search engines pick up my pages, I prefer them to have http instead.

     

    Is there any way to tell this contribution to not generate the links with https?

  12. Hi Everyone,

     

    I see that there has been some new updates to this contribution.. And I would like to update.. But there wasn't absolute clarity on how.. So I figured I'd ask and find out exactly what needs updating from version 3.1 to the new 3.2b..

     

    Is it simply overwriting the supertracker.php file in catalog/includes/classes/supertracker.php ?? Or is there more to this.. etc.. etc.. ?

     

    Thanks in advance.. And this contribution is awesome by the way! :)

    Christine

     

    There was an error in the readme file.

    You need to replace these three files. The readme only listed the first one.

     

    /includes/classes/supertracker.php

    /admin/includes/languages/english/supertracker.php

    /admin/supertracker.php

  13. I hope you don't mean 2Checkout's 5.5% with no monthly fee deal. That's one of the most expensive plans out there.

     

    It all depends on the volume you are doing. 2Checkout is perfect for low monthly amounts ($2000 and under). The rate is quite reasonable when you factor in that there is no monthly fee. Subtract a competitor's monthly fee from that price and work out their percentage based on that figure.

     

    Once you start bringing in more orders though, then yes, the price adds up.

  14. According to the new agreement you will have to mark all tangible goods as shipped and input the shipping, tracking and carrier information in the 2checkout admin as soon as you have shipped them.

     

    That is the way they used to operate with their old system. The new system didn't work that way. Well, as of last night, it still doesn't allow you to mark the items as shipped. So untill they enable that part of their system, you don't have to worry about it.

     

    However, sometime this year I am going to have to get a merchant account. Back on the old system it was fine to have to mark everything as shipped. I wasn't getting a whole lot of orders going through. But now, I'm getting too many orders that it is going to be extra labour to mark each order that comes in as shipped.

     

    2Checkout is fine for starting out. But they do require a lot from you to let them take payments for you. Eventually you will probably find, that your business will no longer have a use for them. They really helped me to grow without having to spend the money on a merchant account. Don't get me wrong, I would rather have liked to have had my own merchant account starting out, but business was so slow at first, that the monthly fees didn't make sense.

  15. I am having the same problem. Works excellent as I wanted to have a contact list for others in my province for upcoming events but I only see US, German, and Canadian customers.

     

    Nothing in Australia, Republic of Korea, U.K., Singapore, etc.

     

    Yes, it looks like countries that do not have zones set up do not get queried.

  16. I also noticed that it only shows my US and Canadian customers and skips the other foreign customers.

     

    I am having the same problem. Works excellent as I wanted to have a contact list for others in my province for upcoming events but I only see US, German, and Canadian customers.

     

    Nothing in Australia, Republic of Korea, U.K., Singapore, etc.

×
×
  • Create New...