X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=update.html;h=54f1d412bdb2f1101288d27aed2d54c958776311;hb=510d6e1925c4d1621ae3efd85e117cc9bb4320f0;hp=296ea160f7073da2033888a86d33926a55a2ba33;hpb=611843528212d10096243e427542be2b2cda5a9b;p=fa-stable.git diff --git a/update.html b/update.html index 296ea160..54f1d412 100644 --- a/update.html +++ b/update.html @@ -22,7 +22,7 @@ these files.
  • Upload all the new files.
  • -
  • Look into the file, config.default.php and compare with your own config.php file. You should update the the following in your config.php:
    1. Change the $version in your config.php file, about line 59, from "2.2.X" to "2.2 RC".
    2. Copy these 2 lines from config.default.php about line 80-82 into config.php about line 80:
      1. /* Show users online discretetely in the footer */
        $show_users_online = 0;
      2. Change this to 1 if you want to show users online.
    3. Replace the 2 lines about line 110-111 in config.php:
      1. $table_style     = "cellpadding=3 border=1 bordercolor='#8cacbb' style='border-collapse: collapse'";
        $table_style2     = "cellpadding=3 border=1 bordercolor='#cccccc' style='border-collapse: collapse'";
    4. With these 4 lines from config.default.php:
      1. if (!isset($_SESSION['bordercolor']))
            $_SESSION['bordercolor'] = "#8cacbb";
        $table_style     = "cellpadding=3 border=1 bordercolor='".$_SESSION['bordercolor']."' class='tablestyle'";
        $table_style2     = "cellpadding=3 border=1 bordercolor='#cccccc' class='tablestyle2'";
    5. Remove these 2 lines from config.php about line 176-176:
      1. /* default start-up tab (orders/AP/stock/manuf/proj/GL/system) */
        $def_app = "orders";
    6. Copy these 2 lines from config.default.php about line 202-203:
      1. define("ICON_SUBMIT", "ok.gif");        // new in 2.2
        define("ICON_ESCAPE", "escape.png");    // new in 2.2
    7. And paste them into config.php about line 209
    +
  • Look into the file, config.default.php and compare with your own config.php file. You should update the the following in your config.php:
    1. Change the $version in your config.php file, about line 59, from "2.2.X" to "2.2 RC".
    2. Copy these 2 lines from config.default.php about line 80-82 into config.php about line 80:
      1. /* Show users online discretetely in the footer */
        $show_users_online = 0;
      2. Change this to 1 if you want to show users online.
    3. Replace the 2 lines about line 110-111 in config.php:
      1. $table_style     = "cellpadding=3 border=1 bordercolor='#8cacbb' style='border-collapse: collapse'";
        $table_style2     = "cellpadding=3 border=1 bordercolor='#cccccc' style='border-collapse: collapse'";
    4. With these 4 lines from config.default.php:
      1. if (!isset($_SESSION['bordercolor']))
            $_SESSION['bordercolor'] = "#8cacbb";
        $table_style     = "cellpadding=3 border=1 bordercolor='".$_SESSION['bordercolor']."' class='tablestyle'";
        $table_style2     = "cellpadding=3 border=1 bordercolor='#cccccc' class='tablestyle2'";
    5. Remove these 2 lines from config.php about line 176-176:
      1. /* default start-up tab (orders/AP/stock/manuf/proj/GL/system) */
        $def_app = "orders";
    6. Copy these 2 lines from config.default.php about line 202-203:
      1. define("ICON_SUBMIT", "ok.gif");        // new in 2.2
        define("ICON_ESCAPE", "escape.png");    // new in 2.2
    7. And paste them into config.php about line 209
  • Rename or remove the /install folder (you have already performed the install process earlier).