Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. /**
  2. * Database Configuration
  3. *
  4. * All of your system's database configuration settings go in here.
  5. * You can see a list of the default settings in craft/app/etc/config/defaults/db.php
  6. */
  7.  
  8. // die('foo');
  9.  
  10. return array(
  11.  
  12. // The database server name or IP address. Usually this is 'localhost' or '127.0.0.1'.
  13. 'server' => 'dbhost',
  14.  
  15. // The name of the database to select.
  16. 'database' => 'dbname',
  17.  
  18. // The database username to connect with.
  19. 'user' => '***',
  20.  
  21. // The database password to connect with.
  22. 'password' => '***',
  23.  
  24. // The prefix to use when naming tables. This can be no more than 5 characters.
  25. 'tablePrefix' => 'craft',
  26.  
  27. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement