Advertisement
Guest User

Untitled

a guest
Apr 25th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. <?php
  2. /**
  3. * The base configuration for WordPress
  4. *
  5. * The wp-config.php creation script uses this file during the
  6. * installation. You don't have to use the web site, you can
  7. * copy this file to "wp-config.php" and fill in the values.
  8. *
  9. * This file contains the following configurations:
  10. *
  11. * * MySQL settings
  12. * * Secret keys
  13. * * Database table prefix
  14. * * ABSPATH
  15. *
  16. * @link https://codex.wordpress.org/Editing_wp-config.php
  17. *
  18. * @package WordPress
  19. */
  20.  
  21. // ** MySQL settings - You can get this info from your web host ** //
  22. /** The name of the database for WordPress */
  23. define('DB_NAME', 'stara_db');
  24.  
  25. /** MySQL database username */
  26. define('DB_USER', 'stara_db');
  27.  
  28. /** MySQL database password */
  29. define('DB_PASSWORD', 'iqD5zn4uWvON');
  30.  
  31. /** MySQL hostname */
  32. define('DB_HOST', 'localhost');
  33.  
  34. /** Database Charset to use in creating database tables. */
  35. define('DB_CHARSET', 'utf8mb4');
  36.  
  37. /** The Database Collate type. Don't change this if in doubt. */
  38. define('DB_COLLATE', '');
  39. define ('WPLANG', 'sr_RS');
  40.  
  41. /**#@+
  42. * Authentication Unique Keys and Salts.
  43. *
  44. * Change these to different unique phrases!
  45. * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
  46. * You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
  47. *
  48. * @since 2.6.0
  49. */
  50. define('AUTH_KEY', 'qF+rpPGM,9RQFDHKvFa.G)FYMvIE6[^jGt2:u!}Ee.MiCe9HZ(M)!;vUOC#Z}HRU');
  51. define('SECURE_AUTH_KEY', '!LRC%KHf46KU?2k_r>U/rA=. 7N9Unu>mV<ISwe<+=au,D-$+{DcOvU5svj1:Lpf');
  52. define('LOGGED_IN_KEY', 'I<m)8 {Dqg s2V6Ert/UkvFw$7NHjuj)SQ2gS^T{J@C^6YuX,djV}H^k3_2p[QSG');
  53. define('NONCE_KEY', 'D%vR&mf7^L3DI4RIr]Q38XuIN8YG9%7.Rv=]E0,d#nu%N tX=7M.k0fz hYxN<:+');
  54. define('AUTH_SALT', '4ou($.0LFz/76|l41:`htVrGrVL=I)c$L,c*:34l&!c_s8QJbJZ0tkRv(AM:<>F(');
  55. define('SECURE_AUTH_SALT', 'z^w!$nPvDu22.@D| fr_y]k{4$&Y2I3gUaz9r{!d-@IkPX3zp4aIeAK(t/!-D!iY');
  56. define('LOGGED_IN_SALT', ']n)/hO5tq(EzNb85Zs87OH,5MNb:c:`KBK?g9keK8!Z?i.%rhPH|)G<:tuG4Sy=A');
  57. define('NONCE_SALT', '#U7&W~2=iEN&8X@(EWKeWpH:!p(sM1Ux$r}cJcpp6F+^(Ub|k]^Kl!w+41BL?6|I');
  58.  
  59. /**#@-*/
  60.  
  61. /**
  62. * WordPress Database Table prefix.
  63. *
  64. * You can have multiple installations in one database if you give each
  65. * a unique prefix. Only numbers, letters, and underscores please!
  66. */
  67. $table_prefix = 'wp_';
  68.  
  69. /**
  70. * For developers: WordPress debugging mode.
  71. *
  72. * Change this to true to enable the display of notices during development.
  73. * It is strongly recommended that plugin and theme developers use WP_DEBUG
  74. * in their development environments.
  75. *
  76. * For information on other constants that can be used for debugging,
  77. * visit the Codex.
  78. *
  79. * @link https://codex.wordpress.org/Debugging_in_WordPress
  80. */
  81. define('WP_DEBUG', false);
  82.  
  83. /* That's all, stop editing! Happy blogging. */
  84.  
  85. /** Absolute path to the WordPress directory. */
  86. if ( !defined('ABSPATH') )
  87. define('ABSPATH', dirname(__FILE__) . '/');
  88.  
  89. /** Sets up WordPress vars and included files. */
  90. require_once(ABSPATH . 'wp-settings.php');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement