Advertisement
Guest User

Untitled

a guest
Jun 20th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. ; Make a copy of this file. Put in the same directory and name it `configuration.ini`.
  2.  
  3. [global]
  4. ; "dev" || "production"
  5. environment = "dev"
  6.  
  7. [db]
  8. ; database host
  9. host = "localhost"
  10.  
  11. ; database name
  12. name = "seymour"
  13.  
  14. ; database user
  15. user = "root"
  16.  
  17. ; database password
  18. pass = ""
  19.  
  20. ; database prefis. It's recommended to replace the default "wp_" with a custom one
  21. prefix = "sm74x_"
  22.  
  23. ; database charset. most likely "utf8"
  24. charset = "utf8"
  25.  
  26. ; database collate. most likely an empty string.
  27. collate = ""
  28.  
  29. [salts]
  30. ; use the generator to generate unique salts: https://api.wordpress.org/secret-key/1.1/salt/
  31.  
  32. auth_key = ""
  33. secure_auth_key = ""
  34. logged_in_key = ""
  35. nonce_key = ""
  36. auth_salt = ""
  37. secure_auth_salt = ""
  38. logged_in_salt = ""
  39. nonce_salt = ""
  40.  
  41. [email]
  42.  
  43. ; E-mail sender domain must match the site domain. Otherwise the hosting provider might prevent the e-mail from being sent
  44. sender = "email@domain.com"
  45.  
  46. ; E-mail subject
  47. subject = "Subject"
  48.  
  49. [message]
  50.  
  51. ; The messages displayed after the e-mail is sent
  52. mail_success = "The messsage has been sent."
  53.  
  54. ; The messages displayed when wp_mail() returend false
  55. mail_failure = "An error occurred. The message wasn't sent."
  56.  
  57. ; The message displayed in case of fatal error
  58. mail_exception = "Server error occurred."
  59.  
  60. ; Generic error message
  61. generic_error = "Error."
  62.  
  63. ; Generic success message
  64. generic_success = "Success."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement