Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.38 KB | None | 0 0
  1. <?php
  2. /** Enable W3 Total Cache */
  3. //Added by WP-Cache Manager
  4. //define('WP_CACHE', true); //Added by WP-Cache Manager
  5. define( 'WPCACHEHOME', '/home/caturartha/public_html/wp-content/plugins/wp-super-cache/' ); //Added by WP-Cache Manager
  6. //Added by WP-Cache Manager
  7.  
  8. define ('WP_MEMORY_LIMIT','256m');
  9.  
  10. /**
  11. * The base configuration for WordPress
  12. *
  13. * The wp-config.php creation script uses this file during the
  14. * installation. You don't have to use the web site, you can
  15. * copy this file to "wp-config.php" and fill in the values.
  16. *
  17. * This file contains the following configurations:
  18. *
  19. * * MySQL settings
  20. * * Secret keys
  21. * * Database table prefix
  22. * * ABSPATH
  23. *
  24. * @link https://codex.wordpress.org/Editing_wp-config.php
  25. *
  26. * @package WordPress
  27. */
  28.  
  29. // ** MySQL settings - You can get this info from your web host ** //
  30. /** The name of the database for WordPress */
  31. define('DB_NAME', 'caturartha_wp419');
  32.  
  33. /** MySQL database username */
  34. define('DB_USER', 'caturartha_wp419');
  35.  
  36. /** MySQL database password */
  37. define('DB_PASSWORD', '3Yz8S!7up.');
  38.  
  39. /** MySQL hostname */
  40. define('DB_HOST', 'localhost');
  41.  
  42. /** Database Charset to use in creating database tables. */
  43. define('DB_CHARSET', 'utf8mb4');
  44.  
  45. /** The Database Collate type. Don't change this if in doubt. */
  46. define('DB_COLLATE', '');
  47.  
  48. /**#@+
  49. * Authentication Unique Keys and Salts.
  50. *
  51. * Change these to different unique phrases!
  52. * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
  53. * 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.
  54. *
  55. * @since 2.6.0
  56. */
  57. define('AUTH_KEY', 'lr0izmdt5p2bfe9lwbao79a3xl4jupyfoieym1cnps4n6bjcien1q4jox6lurejj');
  58. define('SECURE_AUTH_KEY', 'fsadvhlsqmvpraefjrdnoja6au8fn6mxjjqufm3iicu9n0uxkachjnsssbti2kas');
  59. define('LOGGED_IN_KEY', 'ppvvi0vubxopfxsgkx97qd3gu6jpbf50xdxelzj9jojx8ojh4lpnnxl1cljsmjxq');
  60. define('NONCE_KEY', 'kxl5750nxjb9ydq3omqaigxtjlf8orcpjur8xgvanwvlwef92jp8uve0su9ln8pq');
  61. define('AUTH_SALT', 'nsguqd8exaexnyroc0d2ff2mtdxp3ilymzhudc6qdwc75psgwg34dwimiapa4glj');
  62. define('SECURE_AUTH_SALT', '5ywyknocitt347oagjuewcwyyspemavx3skvtgynja65ma9izcp1ulp6lug8eacp');
  63. define('LOGGED_IN_SALT', 'e6n0ukpgpse4ptk5vaolctfk5oybbxlay6giejwel2xrpbvegkqqqovr6zrswjzi');
  64. define('NONCE_SALT', 'eff8bxxthcxykmuwqyreyuch7e2qxhtuyiph5mkgg0qf31bvms9dmktqvnlj3ytg');
  65.  
  66. /**#@-*/
  67.  
  68. /**
  69. * WordPress Database Table prefix.
  70. *
  71. * You can have multiple installations in one database if you give each
  72. * a unique prefix. Only numbers, letters, and underscores please!
  73. */
  74. $table_prefix = 'wpto_';
  75.  
  76. /**
  77. * For developers: WordPress debugging mode.
  78. *
  79. * Change this to true to enable the display of notices during development.
  80. * It is strongly recommended that plugin and theme developers use WP_DEBUG
  81. * in their development environments.
  82. *
  83. * For information on other constants that can be used for debugging,
  84. * visit the Codex.
  85. *
  86. * @link https://codex.wordpress.org/Debugging_in_WordPress
  87. */
  88. define('WP_DEBUG', false);
  89.  
  90. /* That's all, stop editing! Happy blogging. */
  91.  
  92. /** Absolute path to the WordPress directory. */
  93. if ( !defined('ABSPATH') )
  94. define('ABSPATH', dirname(__FILE__) . '/');
  95.  
  96. /** Sets up WordPress vars and included files. */
  97. require_once(ABSPATH . 'wp-settings.php');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement