~ubuntu-branches/ubuntu/karmic/phpbb3/karmic

« back to all changes in this revision

Viewing changes to debian/examples/config.php

  • Committer: Bazaar Package Importer
  • Author(s): Thijs Kinkhorst
  • Date: 2008-04-22 01:13:42 UTC
  • Revision ID: james.westby@ubuntu.com-20080422011342-2y2f8gy0f6oqk5uc
Tags: 3.0.1-1
* New upstream bugfix release.
* Add Portuguese debconf translation thanks to Miguel Figueiredo
  (Closes: #470112)
* Fix PostgreSQL schema to strip out hash-style comments
  (Closes: #461117).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
 
 
3
//
 
4
// phpBB 3.x configuration file
 
5
//
 
6
  
 
7
/*
 
8
 The Database Management System to use
 
9
 Any of: mysql, mysql4, postgres, mssql, oracle, msaccess, mssql-odbc
 
10
 
 
11
 Note: use mysql4 only to enable transaction support, which you must enable
 
12
 in MySQL first. 'mysql' works fine with MySQL 4.x.
 
13
*/
 
14
$dbms = 'mysql';
 
15
   
 
16
/*
 
17
 In $dbhost, 'localhost' means local UNIX socket connection rather than TCP/IP
 
18
 to localhost. If you want the latter, write 127.0.0.1 or the equivalent of
 
19
 localhost.localdomain
 
20
*/
 
21
$dbhost = 'localhost';
 
22
$dbname = 'phpbb2';
 
23
$dbuser = 'phpbb2';
 
24
$dbpasswd = '';
 
25
    
 
26
$table_prefix = 'phpbb_';
 
27
         
 
28
define('PHPBB_INSTALLED', true);
 
29