Guest User

Untitled

a guest
Aug 13th, 2018
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. [production]
  2. phpSettings.display_startup_errors = 0
  3. phpSettings.display_errors = 0
  4. includePaths.library = APPLICATION_PATH "/../library"
  5. bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
  6. bootstrap.class = "Bootstrap"
  7. appnamespace = "Application"
  8. resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
  9. resources.frontController.params.displayExceptions = 0
  10. resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"
  11. resources.modules = ""
  12. resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts/"
  13. resources.layout.layout = master
  14. resources.router.routes.home.route = /home
  15. resources.router.routes.home.defaults.module = default
  16. resources.router.routes.home.defaults.controller = index
  17. resources.router.routes.home.defaults.action = index
  18. resources.router.routes.static-content.route = /content/:page
  19. resources.router.routes.static-content.defaults.module = default
  20. resources.router.routes.static-content.defaults.controller = static-content
  21. resources.router.routes.static-content.defaults.action = display
  22. autoloaderNamespaces[] = "Square_"
  23. resources.router.routes.contact.route = /contact
  24. resources.router.routes.contact.defaults.module = default
  25. resources.router.routes.contact.defaults.controller = contact
  26. resources.router.routes.contact.defaults.action = index
  27.  
  28. resources.mail.transport.type = smtp
  29. resources.mail.transport.host = "smtp.google.com"
  30. resources.mail.transport.auth = login
  31. resources.mail.transport.username = myemail@gmail.com
  32. resources.mail.transport.password = mypassword
Add Comment
Please, Sign In to add comment