111
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

52 regels
1.2 KiB

  1. <?php
  2. return array(
  3. // 授权码,多个授权码使用英文逗号隔开,如:'aaaaa,bbbbb'
  4. 'sn' => '281BE285D7',
  5. // 授权用户手机
  6. 'sn_user' => '',
  7. // 设置URL模式,1、基本模式,2、伪静态模式
  8. 'url_type' => 1,
  9. // 模板内容输出缓存开关
  10. 'tpl_html_cache' => 0,
  11. // 模板内容缓存有效时间(秒)
  12. 'tpl_html_cache_time' => 900,
  13. // 会话文件使用网站路径
  14. 'session_in_sitepath' => 1,
  15. // 默认分页大小
  16. 'pagesize' => 15,
  17. // 分页条数字数量
  18. 'pagenum' => 5,
  19. // 访问页面规则,如禁用浏览器、操作系统类型
  20. 'access_rule' => array(
  21. 'deny_bs' => 'MJ12bot,IE6,IE7'
  22. ),
  23. // 上传配置
  24. 'upload' => array(
  25. 'format' => 'jpg,jpeg,png,gif,xls,xlsx,doc,docx,ppt,pptx,rar,zip,pdf,txt,mp4,avi,flv,rmvb,mp3,otf,ttf',
  26. 'max_width' => '1920',
  27. 'max_height' => ''
  28. ),
  29. // 缩略图配置
  30. 'ico' => array(
  31. 'max_width' => '1000',
  32. 'max_height' => '1000'
  33. ),
  34. // 模块模板路径定义
  35. 'tpl_dir' => array(
  36. 'home' => '/template'
  37. )
  38. );