-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.php
39 lines (35 loc) · 1.23 KB
/
config.php
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
30
31
32
33
34
35
36
37
38
39
<?php
// Database connection details
$dbms = 'mysqli';
$dbhost = 'localhost';
$dbport = '';
$dbname = '';
$dbuser = '';
$dbpasswd = '';
$table_prefix = 'phpbb_';
// Ignore
$acm_type = 'file';
$load_extensions = '';
@define('IN_PHPBB', true);
@define('PHPBB_INSTALLED', true);
$style_data = array();
// If you want to use a style that isn't installed, change the three "path" fields to use
// the name of the style's folder.
// If you want to use the board's default style, just remove these lines
// Style inheritance hasn't been tested
$style_data['style_id'] = 99999;
$style_data['template_id'] = 99999;
$style_data['template_storedb'] = false;
$style_data['template_path'] = 'Annihilation_Classic';
$style_data['bbcode_bitfield'] = '+Ng=';
$style_data['theme_path'] = 'Annihilation_Classic';
$style_data['theme_name'] = 'Annihilation Classic';
$style_data['theme_storedb'] = false;
$style_data['theme_id'] = 99999;
$style_data['imageset_path'] = 'Annihilation_Classic';
$style_data['imageset_id'] = 99999;
$style_data['imageset_name'] = 'Annihilation Classic';
// Name of the folder to output all of the files to
$out_folder = 'out';
// List of forum IDs to convert or leave as array() to convert all guest viewable forums
$forums = array(1, 2, 3);