Skip to:
Content
Pages
Categories
Search
Top
Bottom

Problems with navigation to profile page and posting

  • The installation seemed to go smooth, and I can get to the main admin page, and main forum page, but when I navigate to “edit profile” I get the error below. A very similar error comes up when I try to post…I think it may have something to do with a redirection setting, but not sure.

    – Dave

    https://www.mydomain.com/bbpress/profile/1

    Multiple Choices

    The document name you requested (/bbpress/profile/1) could not be found on this server. However, we found documents with names similar to the one you requested.

    Available documents:

    * /bbpress/profile.php/1 (common basename)

    Please consider informing the owner of the referring page about the broken link.

Viewing 3 replies - 1 through 3 (of 3 total)
  • I’m having the same problem. I can’t get my profile page or tags page to show up. They’re both broken links for some reason.

    Links to forum topics are broken as well. I’m unable to post topics. Here’s the url to my forum

    http://forum.suefeng.com

    Nevermind. I figured it out. I needed a .htaccess file, and it needed to contain this:

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /

    RewriteRule ^forum/([^/]+)/page/([0-9]+)/?$ /forum.php?id=$1&page=$2 [L,QSA]

    RewriteRule ^forum/([^/]+)/?$ /forum.php?id=$1 [L,QSA]

    RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ /topic.php?id=$1&page=$2 [L,QSA]

    RewriteRule ^topic/([^/]+)/?$ /topic.php?id=$1 [L,QSA]

    RewriteRule ^tags/([^/]+)/page/([0-9]+)/?$ /tags.php?tag=$1&page=$2 [L,QSA]

    RewriteRule ^tags/([^/]+)/?$ /tags.php?tag=$1 [L,QSA]

    RewriteRule ^tags/?$ /tags.php [L,QSA]

    RewriteRule ^profile/([^/]+)/page/([0-9]+)/?$ /profile.php?id=$1&page=$2 [L,QSA]

    RewriteRule ^profile/([^/]+)/([^/]+)/?$ /profile.php?id=$1&tab=$2 [L,QSA]

    RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ /profile.php?id=$1&tab=$2&page=$3 [L,QSA]

    RewriteRule ^profile/([^/]+)/?$ /profile.php?id=$1 [L,QSA]

    RewriteRule ^view/([^/]+)/page/([0-9]+)/?$ /view.php?view=$1&page=$2 [L,QSA]

    RewriteRule ^view/([^/]+)/?$ /view.php?view=$1 [L,QSA]

    RewriteRule ^rss/?$ /rss.php [L,QSA]

    RewriteRule ^rss/forum/([^/]+)/?$ /rss.php?forum=$1 [L,QSA]

    RewriteRule ^rss/topic/([^/]+)/?$ /rss.php?topic=$1 [L,QSA]

    RewriteRule ^rss/tags/([^/]+)/?$ /rss.php?tag=$1 [L,QSA]

    RewriteRule ^rss/profile/([^/]+)/?$ /rss.php?profile=$1 [L,QSA]

    </IfModule>

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.
Skip to toolbar