Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <?php
  2. // ===================================================
  3. // Load database info and local development parameters
  4. // ===================================================
  5. if ( file_exists( dirname( __FILE__ ) . '/local-config.php' ) ) {
  6. define( 'WP_LOCAL_DEV', true );
  7. include( dirname( __FILE__ ) . '/local-config.php' );
  8. } else {
  9. define( 'WP_LOCAL_DEV', false );
  10. define( 'DB_NAME', '%%DB_NAME%%' );
  11. define( 'DB_USER', '%%DB_USER%%' );
  12. define( 'DB_PASSWORD', '%%DB_PASSWORD%%' );
  13. define( 'DB_HOST', '%%DB_HOST%%' ); // Probably 'localhost'
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement