File: config.php

package info (click to toggle)
phpbb2 2.0.21-6
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 4,224 kB
  • ctags: 12
  • sloc: sh: 476; makefile: 108; perl: 29; php: 21
file content (29 lines) | stat: -rw-r--r-- 645 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
 
//
// phpBB 2.x configuration file
//
  
/*
 The Database Management System to use
 Any of: mysql, mysql4, postgres, mssql, oracle, msaccess, mssql-odbc

 Note: use mysql4 only to enable transaction support, which you must enable
 in MySQL first. 'mysql' works fine with MySQL 4.x.
*/
$dbms = 'mysql';
   
/*
 In $dbhost, 'localhost' means local UNIX socket connection rather than TCP/IP
 to localhost. If you want the latter, write 127.0.0.1 or the equivalent of
 localhost.localdomain
*/
$dbhost = 'localhost';
$dbname = 'phpbb2';
$dbuser = 'phpbb2';
$dbpasswd = '';
    
$table_prefix = 'phpbb_';
	 
define('PHPBB_INSTALLED', true);