config.php 1017 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?
  2. /* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
  3. -- Common Config
  4. -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
  5. include_once("configs/__init__.php");
  6. include_once("configs/__config_error.php");
  7. include_once("configs/__config_database.php");
  8. include_once("configs/__config_refer.php");
  9. /* 配置 */
  10. global $configs;
  11. $configs["system"] = array(
  12. 'system-name' => '云信万悦康养市场客户营销支撑服务系统', 'system-alias' => '市场客户营销支撑', 'database' => 'MySQLi',
  13. );
  14. //上传文件格式
  15. $configs['upload']['exts'] = array('doc', 'docx', 'ppt', 'pptx', 'xls', 'xlsx', 'pdf', 'rtf', 'csv', 'txt', 'rar', 'zip', 'jpg', 'jpeg', 'png', 'gif', 'bmp', 'dwg');
  16. $configs['upload']['path'] = "runtime/upload/";
  17. $configs['upload']['limit'] = array(10, 10240000);
  18. //日志路径
  19. $configs['log']['path'] = "runtime/log/";
  20. //二维码
  21. $configs['qrcode']['path'] = "runtime/qrcode/";
  22. ?>