Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <?php
  2.  
  3. //
  4. // phpBB 3.x configuration file
  5. //
  6.  
  7. /*
  8. The Database Management System to use
  9. Any of: mysql, postgres, sqlite
  10. Other DBMSs not supported by Debian's dbconfig-common: mysql4, mssql, oracle, msaccess, mssql-odbc
  11.  
  12. Note: use mysql4 only to enable transaction support, which you must enable
  13. in MySQL first. 'mysql' works fine with MySQL 4.x.
  14. */
  15. $dbms = 'mysql';
  16.  
  17. /*
  18. In $dbhost, 'localhost' means local UNIX socket connection rather than TCP/IP
  19. to localhost. If you want the latter, write 127.0.0.1 or the equivalent of
  20. localhost.localdomain
  21. */
  22. $dbhost = 'localhost';
  23. $dbname = 'phpbb';
  24. $dbuser = 'phpbb';
  25. $dbpasswd = '';
  26.  
  27. $table_prefix = 'phpbb_';
  28. $acm_type = 'file';
  29.  
  30. $url_forum = 'my.board';
  31.  
  32. define('PHPBB_INSTALLED', true);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement