Advertisement
Guest User

Untitled

a guest
Apr 5th, 2018
668
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. [production]
  2. appnamespace = "Application"
  3. phpSettings.display_startup_errors = 1
  4. phpSettings.display_errors = 1
  5. resources.frontController.params.displayExceptions = 1
  6. includePaths.library = APPLICATION_PATH "/../library"
  7. resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"
  8. resources.layout.layoutPath = APPLICATION_PATH "/layouts"
  9. resources.modules[] = ""
  10. bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
  11. bootstrap.class = "Bootstrap"
  12. resources.db.enabled = 1
  13. resources.db.adapter = "PDO_MYSQL"
  14. resources.db.params.host = "localhost"
  15. resources.db.params.username = "USER"
  16. resources.db.params.password = "SENHA"
  17. resources.db.params.dbname = "BANCO"
  18. resources.db.params.charset = "utf8"
  19. resources.db.prefix = ""
  20. smarty.sub_dirs = 0
  21. smarty.compile_check = 1
  22. smarty.force_compile = 1
  23. smarty.views_dir = APPLICATION_PATH "/modules/:module/views"
  24. smarty.template_dir = APPLICATION_PATH "/layouts"
  25. smarty.compile_dir = APPLICATION_PATH "/tmp/templates_c"
  26. deserto.config.basepath = ""
  27. deserto.config.domain = ""
  28. deserto.config.language = "pt_BR"
  29. deserto.paginator.perpage = 30
  30. deserto.paginator.range = 3
  31. deserto.layout.justone = 1
  32. deserto.email.encode = "utf-8"
  33. deserto.email.smtp = "smtp.dominio.com.br"
  34. deserto.email.username = "site@dominio.com.br"
  35. deserto.email.password = "senha"
  36. deserto.email.default.email = "site@dominio.com.br"
  37. deserto.email.default.nome = "Nome do site"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement