Full service web hosting, great prices and support. Starts at $1.99/month!
Page 2 of 7 First 1234 ... LastLast
Results 11 to 20 of 64

Thread: osCmax v2.5 RC2 Released - discussion

  1. #11
    rodsstuff
    Guest


    Default Re: osCmax v2.5 RC2 Released - discussion

    Also I notice none of my product options are showing up in the template. This is what I get
    1054 - Unknown column 'popt.products_options_sort_order' in 'order clause'

    select distinct popt.products_options_id, popt.products_options_name,popt.products_options_t ype, popt.products_options_track_stock,popt.products_op tions_length from products_options popt, products_attributes patrib where patrib.products_id='458' and patrib.options_id = popt.products_options_id and popt.language_id = '1' and popt.products_options_track_stock = '1' order by popt.products_options_sort_order, popt.products_options_name

    [TEP STOP]

  2. #12
    2001kx
    Guest


    Default Re: osCmax v2.5 RC2 Released - discussion

    Quote Originally Posted by rodsstuff View Post
    Replaced all the files. Everything works great except the update button is not there. I also used the update link but I get a permission denied message. My web page loads but in the center where the products usually are there is a permission denied message.
    Thanks Rodney
    no update button for me either in admin menu

  3. #13
    2001kx
    Guest


    Default Re: osCmax v2.5 RC2 Released - discussion

    this is what it looks like once i upload the files

    it does show rc2 at the bottom but where do i run the script?


  4. #14
    2001kx
    Guest


    Default Re: osCmax v2.5 RC2 Released - discussion

    then i get this when i try to run the script manually


  5. #15
    cujo
    Guest


    Default Re: osCmax v2.5 RC2 Released - discussion

    Well i got the database problem fixed but as like everyone else no upgrade Button plus under Administrator missing a few things see screen shot seems there are a few bugs in the upgrade package

  6. #16
    osCMax Developer


    osCmax v2.5 RC2 Released - discussion


    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    23,134
    Contribute If you enjoy reading the
    content here, click the below
    image to support our site.
    Click Here To Contribute To Our Site

    Total Contributions For

    michael_s     $ 10.00
    Rep Power
    597


    Default Re: osCmax v2.5 RC2 Released - discussion

    Thanks for the feedback. I left out one critical step in the upgrade instructions. Also, I found a problem with the upgrade script when doing an RC1 to RC2.

    I have uploaded a new changes_only package with the corrected upgrade.php file. I am also attaching it as upgrade.zip to this post.

    Replace admin/upgrade.php you have with the new one in the zip file. Then in your admin panel, go to File Access >> Administrator >> Store Files >> upgrade.php

    It will then appear as an option in your admin panel.

    Then you should be able to perform the upgrade. Be sure to make a backup of your db via phpmyadmin BEFORE running the upgrade. We have tested it, but we have limited configurations so there is a small possibility that the script will not complete the upgrade properly.
    Attached Files Attached Files

  7. #17
    osCMax Developer


    osCmax v2.5 RC2 Released - discussion


    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    23,134
    Contribute If you enjoy reading the
    content here, click the below
    image to support our site.
    Click Here To Contribute To Our Site

    Total Contributions For

    michael_s     $ 10.00
    Rep Power
    597


    Default Re: osCmax v2.5 RC2 Released - discussion

    Quote Originally Posted by dhinze View Post
    Applied RC2 update and now the header is looking for my my store logo in images/icons/ and it is pulling the default.png image.
    Changes in Configuration - My Store have no effect.
    I have not made any customizations
    All templates appear to pull from its own images folder instead of the settings in Configuration-My Store

    -DH
    I just ran into the same issue. Are you using the fallback-html template as your base? This issue is due to changes in the file structure of osCmax.

    The image locations were moved, but the html-templates were not yet updated.

    Here is how I cleared the issue:
    1. Copy the missing images to your templates/images directory.
    2. Edit main_page.code.php in your template directory. You will need to change the {navicongroup} tag code. The path is pointing to the wrong place. We need to change it to point to your templates images directory.

    So change this:
    PHP Code:
    //begin{navicongroup}
      if ((tep_session_is_registered('customer_id')) && (!tep_session_is_registered('noaccount'))) { ?>
          <a href="<?php echo tep_href_link(FILENAME_LOGOFF'''SSL'); ?>"><?php echo tep_image_button('log_off.png'HEADER_TITLE_LOGOFF);?></a>
        <?php }
        echo 
    '<a href="' tep_href_link(FILENAME_CONTACT_US) . '">' tep_image_button('contact.png'HEADER_TITLE_CART_CONTENTS) . '</a> <a href="' tep_href_link(FILENAME_ACCOUNT'''SSL') . '">' tep_image_button('account.png'HEADER_TITLE_MY_ACCOUNT) . '</a> <a href="' tep_href_link(FILENAME_SHOPPING_CART) . '">'?><?php if (BASKET_CART =='cart') { echo tep_image_button('cart_contents.png'HEADER_TITLE_CART_CONTENTS); } else {  echo tep_image_button('contents.png'HEADER_TITLE_CART_CONTENTS); } ?> <?php echo '</a> <a href="' tep_href_link(FILENAME_WISHLIST'''SSL') . '">' tep_image_button('wishlist.png'HEADER_TITLE_WISHLIST) . '</a>';
    //end{navicongroup}
    to this:
    PHP Code:
    //begin{navicongroup}
      if ((tep_session_is_registered('customer_id')) && (!tep_session_is_registered('noaccount'))) { ?>
          <a href="<?php echo tep_href_link(FILENAME_LOGOFF'''SSL'); ?>"><?php echo tep_image_button('log_off.png'HEADER_TITLE_LOGOFF);?></a>
        <?php }
        echo 
    '<a href="' tep_href_link(FILENAME_CONTACT_US) . '">' tep_image(DIR_WS_TEMPLATES 'images/contact.png'HEADER_TITLE_CART_CONTENTS) . '</a> <a href="' tep_href_link(FILENAME_ACCOUNT'''SSL') . '">' tep_image(DIR_WS_TEMPLATES 'images/account.png'HEADER_TITLE_MY_ACCOUNT) . '</a> <a href="' tep_href_link(FILENAME_SHOPPING_CART) . '">'?><?php if (BASKET_CART =='cart') { echo tep_image(DIR_WS_TEMPLATES 'images/cart_contents.png'HEADER_TITLE_CART_CONTENTS); } else {  echo tep_image(DIR_WS_TEMPLATES 'images/contents.png'HEADER_TITLE_CART_CONTENTS); } ?> <?php echo '</a> <a href="' tep_href_link(FILENAME_WISHLIST'''SSL') . '">' tep_image(DIR_WS_TEMPLATES 'images/wishlist.png'HEADER_TITLE_WISHLIST) . '</a>';
    //end{navicongroup}
    That will change your template to look at its own image directory for the images. Just make sure you put the images you need in that directory.

  8. #18
    rodsstuff
    Guest


    Default Re: osCmax v2.5 RC2 Released - discussion

    That worked. The update link is now there
    Thanks.

  9. #19
    cujo
    Guest


    Default Re: osCmax v2.5 RC2 Released - discussion

    I DL the upgrade but i do not have anything under file access execpt Cache control i have put old files back re dloaded the pacage added the new upgrade file still same thing as it shows in screen shot from last post.

    Quote Originally Posted by michael_s View Post
    Thanks for the feedback. I left out one critical step in the upgrade instructions. Also, I found a problem with the upgrade script when doing an RC1 to RC2.

    I have uploaded a new changes_only package with the corrected upgrade.php file. I am also attaching it as upgrade.zip to this post.

    Replace admin/upgrade.php you have with the new one in the zip file. Then in your admin panel, go to File Access >> Administrator >> Store Files >> upgrade.php

    It will then appear as an option in your admin panel.

    Then you should be able to perform the upgrade. Be sure to make a backup of your db via phpmyadmin BEFORE running the upgrade. We have tested it, but we have limited configurations so there is a small possibility that the script will not complete the upgrade properly.

  10. #20
    2001kx
    Guest


    Default Re: osCmax v2.5 RC2 Released - discussion

    Ok i did get it installed (2.5rc2) with the new files and it worked.

    But i use zone rate shipping and it doesnt show with one page check out anymore...no shipping is being charged?
    everything looks the same as before but no go?

    Is this the right place for this topic? or should it be in the main forum?




Page 2 of 7 First 1234 ... LastLast

Similar Threads

  1. osCmax v2.5 RC1 Released - Discussion Thread
    By michael_s in forum Announcement Discussions
    Replies: 17
    Last Post: 03-08-2012, 01:36 PM
  2. osCmax v2.5 Beta 3 Released - Discussion thread
    By michael_s in forum Announcement Discussions
    Replies: 48
    Last Post: 04-07-2011, 09:45 AM
  3. osCmax v2.5 Beta 2 Released - Discussion thread
    By michael_s in forum Announcement Discussions
    Replies: 25
    Last Post: 01-31-2011, 10:54 PM
  4. Not for new threads - for osCMax announcements discussion
    By ridexbuilder in forum Announcement Discussions
    Replies: 1
    Last Post: 12-15-2009, 12:17 AM
  5. Discussion: MySQL Security in OSCMAX
    By red_fraggle in forum osCMax v2 Features Discussion
    Replies: 6
    Last Post: 07-22-2009, 04:32 PM

Tags for this Thread

Bookmarks

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
  •