[phpBB Debug] PHP Warning: in file [ROOT]/includes/crs/crs_misc_functions.php on line 37: mime_content_type(): Empty filename or path
[phpBB Debug] PHP Warning: in file [ROOT]/includes/crs/crs_misc_functions.php on line 37: mime_content_type(): Empty filename or path
Zen Cart 源代码 bmz_io_conf.php

Zen Cart 源代码 bmz_io_conf.php




下载文件

文件名: bmz_io_conf.php
文件类型: PHP文件
文件大小: 864 Bytes
MD5: 811074c44a3f6b706776b0ad8c8c9602

bmz_io_conf.php - 关闭高亮
  1. <?php
  2. /**
  3.  * bmz_io_conf.php
  4.  * filesystem access configuration
  5.  *
  6.  * @author  Tim Kroeger (original author)
  7.  * @copyright Copyright 2005-2006
  8.  * @license http://www.gnu.org/licenses/gpl.txt GNU General Public License V2.0
  9.  * @version $Id: bmz_io_conf.php,v 2.0 Rev 8 2010-05-31 23:46:5 DerManoMann Exp $
  10.  * Last modified by DerManoMann 2010-05-31 23:46:50
  11.  */
  12.  
  13. $bmzConf = array();
  14. $bmzConf['umask']       = 0111;              //set the umask for new files
  15. $bmzConf['dmask']       = 0000;              //directory mask accordingly
  16. //$bmzConf['cachetime']   = 60*60*24;         //maximum age for cachefile in seconds (defaults to a day)
  17. $bmzConf['cachetime']   = 0;         //maximum age for cachefile in seconds (defaults to a day)
  18. $bmzConf['cachedir']    = DIR_FS_CATALOG . 'bmz_cache';
  19. $bmzConf['lockdir']     = DIR_FS_CATALOG . 'bmz_lock';
  20.