[phpslash-users] phpslash modules - phpBB2 and DCL
Brought to you by:
joestewart,
nhruby
From: Joe S. <joe...@us...> - 2004-04-08 15:55:57
|
There are two modules for phpSlash available that may have some interest. They are available without documentation, license files, etc. If you want to help, write docs, make suggestions, bug reports, etc use the module's project site. phpBB2 - http://phpslashforge.org/projects/psl-mod-phpbb/ Bulletin Board module that provides look and feel of phpSlash. All users are logged in and registered through phpSlash. Double Choco Latte - http://phpslashforge.org/projects/psl-mod-dcl/ Trouble Ticket, Work Order and Project management. Provides look and feel of phpSlash. All users are logged in and but not registered yet through phpSlash. Quick installation notes: phpBB2 - download and Install phpBB2 - module only contains changed files. copy files in module to corrrect locations. Block_render_phpbb.class: These should point to phpBB installation. $phpbb_root_path = '/var/www/phpBB2/'; $phpbb_root_url = '/phpBB2'; phpBB2/includes/function_phpslash.php: These should point to the phpSlash installation. chdir('/path/to'); include_once("config.php"); DCL - Install DCL - module contains all files needed. dcl/login.php: This should point to the phpSlash installation. chdir('/var/www/phpslash-0.7.2/public_html'); If it is desired to add links in the navbar, you can add something similar: To config.php::menuitem[] array. $menuitem[] = array( 'name' => "Forum", 'link' => "/phpBB2", 'perm' => "nobody", 'module' => "" ); To config.php::adminmenuitem[] array. $menuitem[] = array( 'name' => "DCL", 'link' => $_PSL['rooturl']. "/dcl/main.php?menuAction=htmlMyDCL.show", 'perm' => "user", 'module' => "" ); |