Skip to content

Commit

Permalink
Updated phorum HOWTO with notes from Gerald Jensen
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@312 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
prescience committed Jul 19, 2001
1 parent e2b48dc commit 9c45d79
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion HOWTO-mantis-phorum
Expand Up @@ -49,9 +49,12 @@ idea):

<a href="<? echo $g_path ?>phorum/">Forum | </a>

You could wrap it in a if check (see code in menu_inc.php for examples) if
You could wrap it in an if check (see code in menu_inc.php for examples) if
you'd like only users with a certain access level to view the forum link.

REPORT: You may need to set the absolute path in menu_inc.php for the phorum
link.

#################################
Step 4: Integrate with Mantis
#################################
Expand Down Expand Up @@ -159,6 +162,23 @@ $p_email = get_current_user_field( "email" );

Now the username and email fields should be automatically filled in each time.

###################################
Step 6: Alter core_API.php
###################################

This applies to 0.15.x and up:

You will need to set the absolute path in core_API.php

require( "constant_inc.php" );

Needs to be changed to:

require( "/usr/local/apache/htdocs/mantis/constant_inc.php" );

Do the same for all of the require() and include() lines. There should be 12
require() and 2 include().

###################################
FINISHED!
###################################
Expand Down

0 comments on commit 9c45d79

Please sign in to comment.