Page 1 of 2 12 LastLast
Results 1 to 10 of 12

BTS 1.2a Upgrade Package for MS2-MAX v1.5.5

This is a discussion on BTS 1.2a Upgrade Package for MS2-MAX v1.5.5 within the osCmax v1.7 Discussion forums, part of the osCmax v1.7 Forums category; This upgrade package is for users of MS2-MAX v1.5.5. It upgrades the BTS 1.0b system to 1.2a. To install this ...

      
  1. #1
    osCMax Developer

    michael_s's Avatar
    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    19,501
    Rep Power
    567


    Default BTS 1.2a Upgrade Package for MS2-MAX v1.5.5

    This upgrade package is for users of MS2-MAX v1.5.5. It upgrades the BTS 1.0b system to 1.2a.

    To install this package on your store, follow the install.txt instructions in the zip file.

    Please note:

    BACKUP your TEMPLATE FILES and DATABASE BEFORE you install this upgrade.

    The upgrade is very easy, but if you have customized your templates, you will need to back them up, and re-upload them after the installation of the new system.

    The upgrade package is attached below.
    Attached Files Attached Files
    Michael Sasek
    osCMax Developer


    osCmax installation service - Have our professionals install osCmax on your server - same day service!
    osCmax 2.0 User Manual - the must have beginners guide to osCmax v2.0

    Stay Up To Date with everything osCMax:
    Free osCMax Newsletters - Security notices, New Releases, osCMax News
    osCMax on Twitter - Up to the minute info as it happens. Know it first.

    osCmax Documentation

  2. #2
    Member
    Join Date
    Jun 2003
    Location
    Helsinki
    Posts
    65
    Rep Power
    0


    Default

    I tried it and noticed that the CSS template has trouble dealing with wide (150 pixels) small product images. Those seem to break the layout completely.

    I made templates/LynoureOld for my old templates and modified common_top_bts.php to
    allow switching to use the old templates. However, I cannot switch back to the other templates and I don't get the box in my old store look. What can I do?

  3. #3
    Member
    Join Date
    Jun 2003
    Location
    Helsinki
    Posts
    65
    Rep Power
    0


    Default

    I found the solution to the second problem:

    add following

    <?php
    // include i.e. template switcher in every template
    if(file_exists(DIR_WS_TEMPLATES_BASE . 'common_top_bts.php')) require(DIR_WS_TEMPLATES_BASE . 'common_top_bts.php');
    ?>

    into main_page.tpl.php after line

    <!-- warning_eof //-->

  4. #4
    osCMax Developer

    michael_s's Avatar
    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    19,501
    Rep Power
    567


    Default

    Lynoure, all the templates are just samples. It is up to you to customize them to work with your images.

    I don't recommend any of the included templates for a production site, as they are just to show the easy switching ability of the new system.

    Also, in the CSS theme, as in any theme that contstrains the width of the page, your images must be constrained to fit as well. I mean think about it. If the total width of the table is 750, and the middle box is 350, and your product image is 250, that doesnt leave a lot of space for a heading, now does it... 100 pixels. It is just simple math...
    Michael Sasek
    osCMax Developer


    osCmax installation service - Have our professionals install osCmax on your server - same day service!
    osCmax 2.0 User Manual - the must have beginners guide to osCmax v2.0

    Stay Up To Date with everything osCMax:
    Free osCMax Newsletters - Security notices, New Releases, osCMax News
    osCMax on Twitter - Up to the minute info as it happens. Know it first.

    osCmax Documentation

  5. #5
    New Member
    Join Date
    Oct 2003
    Posts
    24
    Rep Power
    0


    Default

    This upgrade package is for users of MS2-MAX v1.5.5. It upgrades the BTS 1.0b system to 1.2a.
    Let me get this right, if we have already run the update from v1.5 to v1.5.5, we still need to update the BTS once more with the BTS v1.2a?

  6. #6
    osCMax Developer

    michael_s's Avatar
    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    19,501
    Rep Power
    567


    Default

    innovations, no, you do not have to. It is a new upgrade the bts system in 1.5.5.

    MAX 1.5.5 will work fine without this upgrade. This is for people who want all the latest features of the template system...
    Michael Sasek
    osCMax Developer


    osCmax installation service - Have our professionals install osCmax on your server - same day service!
    osCmax 2.0 User Manual - the must have beginners guide to osCmax v2.0

    Stay Up To Date with everything osCMax:
    Free osCMax Newsletters - Security notices, New Releases, osCMax News
    osCMax on Twitter - Up to the minute info as it happens. Know it first.

    osCmax Documentation

  7. #7
    New Member
    Join Date
    Oct 2003
    Posts
    24
    Rep Power
    0


    Default

    This is for people who want all the latest features of the template system...
    That is what I meant, do we need to update the Max 1.5.5 with the BTS 1.2a if we want all the latest features? I just updated my MAX on Friday with the 1.5.5 upgrade and I was wandering if I still lack the BTS 1.2a version.

    Sorry for the miscommunication!

  8. #8
    Member
    Join Date
    Jun 2003
    Location
    Helsinki
    Posts
    65
    Rep Power
    0


    Default

    By "trouble dealing" I didn't mean normal width of the page issues but that the boxes break (the image leaks partially out of the box and boxes overlap each other weirdly) same image sizes work just beautifully in other templates.

    I attached a screenshot for those interested. It's reduced to 60% of actual size. The gift voucher image could be smaller than the 150 pixel width, but images of wide hem full length dresses cannot be scaled to much smaller than the GV image size, otherwise they will not be any better than having no images at all.

    It might be unrelated, but I realized the CSS template one is the only one with the currency box. The others seems to have lost it somehow.

    Edit: It seems that the else clause for using the default box in currencies.php has been left out:

    // bof BTSv1.2
    if(file_exists(DIR_WS_BOX_TEMPLATES . $box_base_name . '.tpl.php')) {
    // if exists, load unique box template for this box from templates/boxes/
    require(DIR_WS_BOX_TEMPLATES . $box_base_name . '.tpl.php');
    }
    else {
    // load default box template: templates/boxes/box.tpl.php

    }
    // eof BTSv1.2

    So no wonder the currencies box is missing.
    Attached Images Attached Images

  9. #9
    osCMax Developer

    michael_s's Avatar
    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    19,501
    Rep Power
    567


    Default

    I am looking at this. Looks like I forgot to add the updated file to the template...

    A fix is coming shortly...
    Michael Sasek
    osCMax Developer


    osCmax installation service - Have our professionals install osCmax on your server - same day service!
    osCmax 2.0 User Manual - the must have beginners guide to osCmax v2.0

    Stay Up To Date with everything osCMax:
    Free osCMax Newsletters - Security notices, New Releases, osCMax News
    osCMax on Twitter - Up to the minute info as it happens. Know it first.

    osCmax Documentation

  10. #10
    osCMax Developer

    michael_s's Avatar
    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    19,501
    Rep Power
    567


    Default

    I have updated the zip to fix the currencies.php file. If you already have it installed, all you need to do is unzip it and then replace the /includes/boxes/currencies.php file with the one in this zip.

    Or you could just edit /includes/boxes/currencies.php by finding this line:
    Code:
    // load default box template: templates/boxes/box.tpl.php
    and adding this below it:
    Code:
    require(DIR_WS_BOX_TEMPLATES . TEMPLATENAME_BOX);
    Michael Sasek
    osCMax Developer


    osCmax installation service - Have our professionals install osCmax on your server - same day service!
    osCmax 2.0 User Manual - the must have beginners guide to osCmax v2.0

    Stay Up To Date with everything osCMax:
    Free osCMax Newsletters - Security notices, New Releases, osCMax News
    osCMax on Twitter - Up to the minute info as it happens. Know it first.

    osCmax Documentation

Page 1 of 2 12 LastLast

Similar Threads

  1. Will there be a 1.5.5 -> 1.7 upgrade package?
    By Lynoure in forum osCMax v1.7 Installation
    Replies: 0
    Last Post: 10-09-2004, 01:20 PM
  2. [MS2-MAX UPDATE]Easypopulate 2.72 upgrade package
    By michael_s in forum osCmax v1.7 Discussion
    Replies: 0
    Last Post: 05-03-2004, 08:46 AM
  3. BTS 1.2a Upgrade Package : popup_image.php FIX
    By duntuk in forum osCmax v1.7 Discussion
    Replies: 1
    Last Post: 02-02-2004, 02:23 PM
  4. ms2-max UPGRADE PACKAGE--
    By annea03 in forum osCmax v1.7 Discussion
    Replies: 0
    Last Post: 09-18-2003, 12:22 PM
  5. [MS2-MAX UPDATE] Upgrade Package v1.0 to v1.5 released
    By michael_s in forum osCmax v1.7 Discussion
    Replies: 0
    Last Post: 09-16-2003, 02:01 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •