Forum Replies Created
-
In reply to: Cannot Edit Users
All I know is that it wouldn’t work before and now it works perfectly.
In reply to: Cannot Edit UsersAll I know is that it wouldn’t work before and now it works perfectly.
In reply to: Cannot Edit UsersGood now – all you have to do is turn off permalinks after you move a directory.
If you want the Permalinks options to work, you have to change the “options-permalinks.php” file. Mine initially looked like this:
**********
$permalink_options = array(
‘mod_rewrite’ => array(
‘title’ => __( ‘Permalink type’ ),
‘type’ => ‘radio’,
‘options’ => array(
‘0’ => sprintf( __( ‘<span>None</span>
%s
‘ ), bb_get_uri( ‘forums.php’, array( ‘id’ => 1 ), BB_URI_CONTEXT_TEXT ) ),‘1’ => sprintf( __( ‘<span>Numeric</span>
%s
‘ ), bb_get_uri( ‘forums/1’, null, BB_URI_CONTEXT_TEXT ) ),‘slugs’ => sprintf( __( ‘<span>Name based</span>
%s
‘ ), bb_get_uri( ‘/forums/first-forum’, null, BB_URI_CONTEXT_TEXT ) ))
)
);
**********
And so I changed it to this:
**********
$permalink_options = array(
‘mod_rewrite’ => array(
‘title’ => __( ‘Permalink type’ ),
‘type’ => ‘radio’,
‘options’ => array(
‘0’ => sprintf( __( ‘<span>None</span>
%s
‘ ), bb_get_uri( ‘forums.php’, array( ‘id’ => 1 ), BB_URI_CONTEXT_TEXT ) ),‘1’ => sprintf( __( ‘<span>Numeric</span>
%s
‘ ), bb_get_uri( ‘/1’, null, BB_URI_CONTEXT_TEXT ) ),‘slugs’ => sprintf( __( ‘<span>Name based</span>
%s
‘ ), bb_get_uri( ‘/first-forum’, null, BB_URI_CONTEXT_TEXT ) ))
)
);
**********
In reply to: Cannot Edit UsersGood now – all you have to do is turn off permalinks after you move a directory.
If you want the Permalinks options to work, you have to change the “options-permalinks.php” file. Mine initially looked like this:
**********
$permalink_options = array(
‘mod_rewrite’ => array(
‘title’ => __( ‘Permalink type’ ),
‘type’ => ‘radio’,
‘options’ => array(
‘0’ => sprintf( __( ‘<span>None</span>
%s
‘ ), bb_get_uri( ‘forums.php’, array( ‘id’ => 1 ), BB_URI_CONTEXT_TEXT ) ),‘1’ => sprintf( __( ‘<span>Numeric</span>
%s
‘ ), bb_get_uri( ‘forums/1’, null, BB_URI_CONTEXT_TEXT ) ),‘slugs’ => sprintf( __( ‘<span>Name based</span>
%s
‘ ), bb_get_uri( ‘/forums/first-forum’, null, BB_URI_CONTEXT_TEXT ) ))
)
);
**********
And so I changed it to this:
**********
$permalink_options = array(
‘mod_rewrite’ => array(
‘title’ => __( ‘Permalink type’ ),
‘type’ => ‘radio’,
‘options’ => array(
‘0’ => sprintf( __( ‘<span>None</span>
%s
‘ ), bb_get_uri( ‘forums.php’, array( ‘id’ => 1 ), BB_URI_CONTEXT_TEXT ) ),‘1’ => sprintf( __( ‘<span>Numeric</span>
%s
‘ ), bb_get_uri( ‘/1’, null, BB_URI_CONTEXT_TEXT ) ),‘slugs’ => sprintf( __( ‘<span>Name based</span>
%s
‘ ), bb_get_uri( ‘/first-forum’, null, BB_URI_CONTEXT_TEXT ) ))
)
);
**********
In reply to: Cannot Edit UsersBy the way, I’m running Linux/4GH, PHP 5.x, MySQL on godaddy.com. I have the latest versions of WordPress (3.1) and bbPress(1.0.3) installed.
In reply to: Cannot Edit UsersBy the way, I’m running Linux/4GH, PHP 5.x, MySQL on godaddy.com. I have the latest versions of WordPress (3.1) and bbPress(1.0.3) installed.
In reply to: New User Does Not Receive EmailThanks – new here – and to forums.
I’m running Linux/4GH, PHP 5.x, MySQL on godaddy.com. I have the latest versions of WordPress (3.1) and bbPress(1.0.3) installed.
I don’t think there is a mail service running on the server, though I’m sure I can add one. I just need to know what to ask for.
In reply to: New User Does Not Receive EmailThanks – new here – and to forums.
I’m running Linux/4GH, PHP 5.x, MySQL on godaddy.com. I have the latest versions of WordPress (3.1) and bbPress(1.0.3) installed.
I don’t think there is a mail service running on the server, though I’m sure I can add one. I just need to know what to ask for.