From 732853c411144ebaabd1d9a67d8c2fdafda39d73 Mon Sep 17 00:00:00 2001 From: Joe Hunt Date: Fri, 23 Oct 2009 23:31:31 +0000 Subject: [PATCH] Better format. --- update.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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).
  • -- 2.30.2