osCmax v2.5 User Manual
Page 1 of 6 123 ... LastLast
Results 1 to 10 of 56

osCmax v2.5 Beta-1 Released

This is a discussion on osCmax v2.5 Beta-1 Released within the Announcement Discussions forums, part of the osCmax News and Announcements category; A new blog entry has been added: [drupal=395]osCmax v2.5 Beta-1 Released[/drupal] <div class="posterous_autopost">Beta 1 of osCmax v2.5 was officially released ...

      
  1. #1
    osCMax Developer

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


    Default osCmax v2.5 Beta-1 Released

    A new blog entry has been added:

    [drupal=395]osCmax v2.5 Beta-1 Released[/drupal]

    <div class="posterous_autopost">Beta 1 of osCmax v2.5 was officially released Monday. This is a pre-release for testing, and while it is quite stable, it is not recommended production use just yet. After a few weeks of beta testing, if all goes well, v2.5 stable will be generally released for production. For those following development, you will notice that the version number has changed a bit from what we had been using. Due to the large amounts of changes to the code, we wanted to reflect that more accurately with our version number designation, thus the jump to v2.5.

    We encourage everyone to download the new version for testing, as it is a major change in osCmax and you will want to get familiar with all the new features and changes.

    Get the new download package Here
    Michael Sasek
    osCMax Developer


    osCmax Installation Service
    - Have our professionals install osCmax on your server - same day service!
    osCmax 2.5 User Manual - the must have beginners guide to osCmax v2.5

    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
    Mar 2010
    Posts
    57
    Rep Power
    3


    Default Re: osCmax v2.5 Beta-1 Released

    A big thank-you to you and your team for all the hard work you put into this project.

  3. #3
    Member
    Join Date
    Apr 2009
    Location
    CT
    Posts
    62
    Rep Power
    4


    Default Re: osCmax v2.5 Beta-1 Released

    All I have to say is WOW. Installed and testing and very impressed. This is going to give the base OSC and Cre a huge run for their money. This is what an e-commerce solution should be.

    Thank you

  4. #4
    Lurker
    Join Date
    Nov 2010
    Posts
    1
    Rep Power
    0


    Default Re: osCmax v2.5 Beta-1 Released

    Installation was easy. Nice job.
    However, I am new to osCmax. After installing all I see is a blank page. I modified mainpage.php through the admin panel, and I still only see a blank page. Something here is not very intuitive as I have yet to see how the storefront looks.
    Please help.

  5. #5
    New Member
    Join Date
    Oct 2010
    Posts
    9
    Rep Power
    0


    Default Re: osCmax v2.5 Beta-1 Released

    I have a suggestion on the new products page. The are 2 ways to access the new products page from the default home page, one from the "What's new" box at the left column and one from the main content area where shows the latest products. When the "What's new" link or the" New Products for November" link or the arrows next to these links are clicked, it goes to index.php?new_products=1, the products are displayed as order by name. It doesn't make sense because I'm expecting to see the latest products but it shows the products from A-Z. It's better to display the products order by date. Anyway that I can change it?

  6. #6
    osCMax Development Team
    pgmarshall's Avatar
    Join Date
    Feb 2009
    Location
    London
    Posts
    2,656
    Rep Power
    48


    Smile Re: osCmax v2.5 Beta-1 Released

    Yes - it can be changed.

    However, at the moment the code adds the sort order of date_added after the other sort orders. As such, the name overrides the date added - if you had two products with the same name they would be in date order.

    // Add new products limit and order
    if (isset($_GET['new_products']) && tep_not_null($_GET['new_products'])) {
    $listing_sql .= ", products_date_added";
    }
    It may be worth the development team adding "Latest products" to the drop down menu in the listing pages to allow them to be sorted by date on the fly ... if this was done then you can select the sort by passing the variable in the url.

    Have a look at the bottom section of the query build in catalog/index.php - it will depend on your comfort coding in PHP ...

    Regards,
    pgmarshall
    _______________________________

  7. #7
    New Member
    Join Date
    Nov 2008
    Posts
    11
    Rep Power
    0


    Default Re: osCmax v2.5 Beta-1 Released

    I just install the beta and so far this is what I found out:

    1. When clicking easypolulate in the admin section, the search tab bar on the top loses its tab.
    2. In Slideshow, It would be good if we can have upload button


    I'll update more on my finding soon

    Note: I had a series of problem but I soon found out that the my local server system is the culprit . I'm using Mac OS X Snow leopard with MAMP 1.9.4
    Last edited by azrin_aris; 11-15-2010 at 11:34 PM.

  8. #8
    osCMax Development Team
    pgmarshall's Avatar
    Join Date
    Feb 2009
    Location
    London
    Posts
    2,656
    Rep Power
    48


    Default Re: osCmax v2.5 Beta-1 Released

    When clicking easypolulate in the admin section, the search tab bar on the top loses its tab.
    Don't forget to use the BugTraker so that we can keep track of any problems and fix these issues - I have added this one for you.

    Thanks for pointing it out.

    Regards,
    pgmarshall
    _______________________________

  9. #9
    osCMax Development Team
    ridexbuilder's Avatar
    Join Date
    Jul 2008
    Location
    Haggisland
    Posts
    3,012
    Rep Power
    36


    Exclamation Re: osCmax v2.5 Beta-1 Released

    Quote Originally Posted by gjameson View Post
    Installation was easy. Nice job.
    However, I am new to osCmax. After installing all I see is a blank page. I modified mainpage.php through the admin panel, and I still only see a blank page. Something here is not very intuitive as I have yet to see how the storefront looks.
    Please help.
    The blank page syndrome is addressed in the wiki and possibly in the installation process too.
    http://wiki.oscdox.com/v2.5/faq
    http://wiki.oscdox.com/v2.5/installation
    Last edited by ridexbuilder; 11-16-2010 at 01:38 AM.
    Hosting plans with installation, configuration, contributions, support and maintenance.

  10. #10
    New Member
    Join Date
    Nov 2008
    Posts
    11
    Rep Power
    0


    Default Re: osCmax v2.5 Beta-1 Released

    Quote Originally Posted by pgmarshall View Post
    Don't forget to use the BugTraker so that we can keep track of any problems and fix these issues - I have added this one for you.

    Thanks for pointing it out.

    Regards,
    Thank you, I'm new to this btw, great job on this new version. It really make our admin lives easy. I have a question, how can I implement items that at build of several other items and when it is purchase, all the other items need to built it will also be automatically deducted from the inventory.

    Thanks in advance

Page 1 of 6 123 ... LastLast

Similar Threads

  1. osCMax v2.0 RC2 Released
    By michael_s in forum Announcements
    Replies: 0
    Last Post: 09-21-2005, 03:43 PM
  2. osCMax v2.0 RC1 Released!
    By michael_s in forum Announcements
    Replies: 0
    Last Post: 06-14-2005, 01:51 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
  •