It all depends how you code it there is 2 ways.
Default code or hardcode.
Here is the default code when you install it.
Code:
// Forum (phpBB) link:
if ( (isset($phpBB->phpBB['db_installed_config']) && $phpBB->phpBB['db_installed_config']) && (isset($phpBB->phpBB['files_installed']) && $phpBB->phpBB['files_installed']) && (PHPBB_LINKS_ENABLED=='true')) {
$information[] = '<a href="' . zen_href_link($phpBB->phpBB['phpbb_url'] . FILENAME_BB_INDEX, '', 'NONSSL', false, '', true) . '" target="_blank">' . BOX_BBINDEX . '</a>';
// or: $phpBB->phpBB['phpbb_url'] . FILENAME_BB_INDEX
// or: str_replace(str_replace(DIR_WS_CATALOG, '', DIR_FS_CATALOG), '', DIR_WS_PHPBB)
and here is the hard code
Code:
// Forum (phpBB) link:
if ( (isset($phpBB->phpBB['db_installed_config']) && $phpBB->phpBB['db_installed_config']) && (isset($phpBB->phpBB['files_installed']) && $phpBB->phpBB['files_installed']) && (PHPBB_LINKS_ENABLED=='true')) {
$information[] = '<a href="http://www.xtreme-hosting-inc.com/demo/demotest/forums/" target="_blank">' . BOX_BBINDEX . '</a>';
// or: $phpBB->phpBB['phpbb_url'] . FILENAME_BB_INDEX
// or: str_replace(str_replace(DIR_WS_CATALOG, '', DIR_FS_CATALOG), '', DIR_WS_PHPBB)
Code:
Note: Change this address http://www.xtreme-hosting-inc.com/demo/demotest/forums/ in the baove code to your phpbb address on your site ot ftp or hosts appointed file location
If you didnt enable it when you first installed zen, its harder to get it to work.
If you reupload zc_install and update Config files only, it should worked (did for me anyway)
Give that a **** see what happenes.
If it does'nt take the information.php and hard code the forum address in there and see if it works.
But the forum will not intergate into zen without being installed through zc_install.
Good Luck