Topic: Bug in punbb

After pressing 'install' it gives config body that looks:

'<?php

$db_type = 'mysql';
$db_host = 'localhost';
$db_name = 'punbb';
$db_username = 'xxx;
$db_password = 'xxx';
$db_prefix = '';
$p_connect = false;

$cookie_name = 'punbb_cookie';
$cookie_domain = '';
$cookie_path = '/';
$cookie_secure = 0;
$cookie_seed = 'd995a4b5';

define('PUN', 1);'

Where is ending '?>'?

Looks like this is not all config should be... OK, after adding '?>' i run index file and....nothing - blank page.

2

Re: Bug in punbb

The closing tag is absent on purpose to prevent people accidentally inserting white space which would result in a blank page.

Re: Bug in punbb

http://punbb.org/forums/viewtopic.php?id=7708

Re: Bug in punbb

Thanks a lot for help.