Guest User

Untitled

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