Changeset 6089 for temp/trunk/html


Ignore:
Timestamp:
2006/10/12 14:02:58 (20 years ago)
Author:
naka
Message:

* empty log message *

Location:
temp/trunk/html
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/html/admin/require.php

    r5934 r6089  
    2828 
    2929//fnSetErrorHandler(); 
     30 
    3031?> 
  • temp/trunk/html/admin/system/bkup.php

    r6081 r6089  
    66 */ 
    77require_once("../require.php"); 
    8 require_once("../../../data/module/Tar.php"); 
    9  
     8require_once(DATA_PATH. "module/Tar.php"); 
    109 
    1110define("DB_TYPE", "pgsql");  
  • temp/trunk/html/install/index.php

    r6080 r6089  
    302302            mkdir($path); 
    303303        } 
    304         $path = "../../html/upload/save_image"; 
     304        $path = "./upload/save_image"; 
    305305        if(!file_exists($path)) { 
    306306            mkdir($path); 
    307307        } 
    308         $path = "../../html/upload/temp_image"; 
     308        $path = "./upload/temp_image"; 
    309309        if(!file_exists($path)) { 
    310310            mkdir($path); 
    311311        } 
    312         $path = "../../html/upload/graph_image"; 
     312        $path = "./upload/graph_image"; 
    313313        if(!file_exists($path)) { 
    314314            mkdir($path); 
    315315        } 
    316         $path = "../../html/upload/csv"; 
     316        $path = "./upload/csv"; 
    317317        if(!file_exists($path)) { 
    318318            mkdir($path); 
  • temp/trunk/html/products/batch_relate.php

    r5934 r6089  
    77 
    88/*¡¡¤³¤Î¾¦ÉʤòÇã¤Ã¤¿¿Í¤Ï¤³¤ó¤Ê¾¦ÉʤâÇã¤Ã¤Æ¤¤¤Þ¤¹¡£½¸·×¥Õ¥¡¥¤¥ë  */ 
    9  
    10 $BATCH_DIR = realpath(dirname( __FILE__)); 
    11 require_once($BATCH_DIR  . "/../../data/lib/slib.php"); 
    12 require_once($BATCH_DIR  . "/../../data/lib/glib.php"); 
    13 require_once($BATCH_DIR  . "/../../data/class/SC_Query.php"); 
    14 require_once($BATCH_DIR  . "/../../data/class/SC_DbConn.php"); 
     9require_once(DATA_PATH . "lib/slib.php"); 
     10require_once(DATA_PATH . "lib/glib.php"); 
     11require_once(DATA_PATH . "class/SC_Query.php"); 
     12require_once(DATA_PATH . "class/SC_DbConn.php"); 
    1513         
    1614$objQuery = new SC_Query(); 
Note: See TracChangeset for help on using the changeset viewer.