Advertisement
le_9k

wp-config.php

Feb 19th, 2018
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 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. /*
  22. * Caching
  23. */
  24. define('WP_CACHE', true);
  25. define('LARAVEL_PATH', dirname(__FILE__) . '/../..'); // Make sure this is pointed to same server
  26.  
  27. require_once(LARAVEL_PATH . '/vendor/autoload.php');
  28. require_once(LARAVEL_PATH . '/config/application.php');
  29.  
  30. /** Sets up WordPress vars and included files. */
  31. require_once(ABSPATH . 'wp-settings.php');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement