home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / admin / cache.inc < prev    next >
Encoding:
Text File  |  2003-03-05  |  655 b   |  25 lines

  1. <?php
  2. /////////////////////////////////////////////////////////
  3. //    
  4. //    include/cache.inc
  5. //
  6. //    (C)Copyright 2003 Ryo Chijiiwa <Ryo@IlohaMail.org>
  7. //
  8. //    This file is part of IlohaMail. IlohaMail is free software released 
  9. //    under the GPL license.  See enclosed file COPYING for details, or 
  10. //    see http://www.fsf.org/copyleft/gpl.html
  11. //
  12. /////////////////////////////////////////////////////////
  13.  
  14. include("../conf/conf.inc");
  15.  
  16. if (($backend=="FS") || (empty($DB_CACHE_TABLE))){
  17.     include("../include/cache.FS.inc");
  18. }else{
  19.     include_once("../conf/db_conf.php");
  20.     include_once("../include/idba.$DB_TYPE.inc");
  21.     include_once("../include/cache.DB.inc");
  22. }
  23.  
  24.  
  25. ?>