The server is 2003 64bit but running in 32bit emulation to accommodate legacy software.
ISAPI_Rewrite has been updated 3.1.0 .56
There are 34 other phpbb forums we host, all working properly
Mysql is 5.0.45
The installation seemed to go fine and the url appears to be re written (http://www.herbalistsguide.com/forum/yo ... -forum-f2/) but I get a 404 error.
After spending several hours in your forum I see that the general diagnosis is rewrite error.
I have tried a number of combinations offered by this forum and by .htaccess in the admin panel. I have tried loading in the forum folder and have tried loading in the root folder. I have tried with virtual root on and with virtual root off.
I am using ISAPI_Rewrite3 and this is my current httpd.ini attempt
- Code: Select all
REMEBER YOU ONLY NEED TO STARD MOD REWRITE ONCE
RewriteEngine On
# REWRITE BASE
RewriteBase /
# HERE IS A GOOD PLACE TO ADD THE WWW PREFIXE REDIRECTION
#####################################################
# PHPBB SEO REWRITE RULES - ADVANCED
#####################################################
# AUTHOR : dcz www.phpbb-seo.com
# STARTED : 01/2006
#################################
# FORUMS PAGES
###############
# FORUM INDEX REWRITERULE WOULD STAND HERE IF USED. "forum" REQUIRES TO BE SET AS FORUM INDEX
# RewriteRule ^forum/forum\.html$ /forum/index.php [QSA,L,NC]
# FORUM
RewriteRule ^forum/[a-z0-9_-]*-f([0-9]+)/?(page([0-9]+)\.html)?$ /forum/viewforum.php?f=$1&start=$3 [QSA,L,NC]
# TOPIC WITH VIRTUAL FOLDER
RewriteRule ^forum/[a-z0-9_-]*-f([0-9]+)/[a-z0-9_-]*-t([0-9]+)(-([0-9]+))?\.html$ /forum/viewtopic.php?f=$1&t=$2&start=$4 [QSA,L,NC]
# GLOBAL ANNOUNCES WITH VIRTUAL FOLDER
RewriteRule ^forum/announces/[a-z0-9_-]*-t([0-9]+)(-([0-9]+))?\.html$ /forum/viewtopic.php?t=$1&start=$3 [QSA,L,NC]
# TOPIC WITHOUT FORUM ID & DELIM
RewriteRule ^forum/([a-z0-9_-]*)/?[a-z0-9_-]*-t([0-9]+)(-([0-9]+))?\.html$ /forum/viewtopic.php?forum_uri=$1&t=$2&start=$4 [QSA,L,NC]
# PROFILES SIMPLE
RewriteRule ^forum/member([0-9]+)\.html$ /forum/memberlist.php?mode=viewprofile&u=$1 [QSA,L,NC]
# USER MESSAGES SIMPLE
RewriteRule ^forum/member([0-9]+)-(topics|posts)(-([0-9]+))?\.html$ /forum/search.php?author_id=$1&sr=$2&start=$4 [QSA,L,NC]
# GROUPS SIMPLE
RewriteRule ^forum/group([0-9]+)(-([0-9]+))?\.html$ /forum/memberlist.php?mode=group&g=$1&start=$3 [QSA,L,NC]
# POST
RewriteRule ^forum/post([0-9]+)\.html$ /forum/viewtopic.php?p=$1 [QSA,L,NC]
# ACTIVE TOPICS
RewriteRule ^forum/active-topics(-([0-9]+))?\.html$ /forum/search.php?search_id=active_topics&start=$2&sr=topics [QSA,L,NC]
# UNANSWERED TOPICS
RewriteRule ^forum/unanswered(-([0-9]+))?\.html$ /forum/search.php?search_id=unanswered&start=$2&sr=topics [QSA,L,NC]
# NEW POSTS
RewriteRule ^forum/newposts(-([0-9]+))?\.html$ /forum/search.php?search_id=newposts&start=$2&sr=topics [QSA,L,NC]
# THE TEAM
RewriteRule ^forum/the-team\.html$ /forum/memberlist.php?mode=leaders [QSA,L,NC]
# HERE IS A GOOD PLACE TO ADD OTHER PHPBB RELATED REWRITERULES
# FORUM WITHOUT ID & DELIM
# THESE THREE LINES MUST BE LOCATED AT THE END OF YOUR HTACCESS TO WORK PROPERLY
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^forum/([a-z0-9_-]+)/?(page([0-9]+)\.html)?$ /forum/viewforum.php?forum_uri=$1&start=$3 [QSA,L,NC]
# END PHPBB PAGES
running it through the Helicon config editor I get 3 errors
- Code: Select all
# # Line 5: (Unknown expression) RewriteBase /
# # Line 46: (Unknown expression) RewriteCond %{REQUEST_FILENAME} !-f
# # Line 47: (Unknown expression) RewriteCond %{REQUEST_FILENAME} !-d
But I have also tried several others like this one
- Code: Select all
httpd.ini pour le mod rewrite phpBB SEO Avancé
1) On démarre Isapi rewrite.
Code:
[ISAPI_Rewrite]
2) Optionnel retrait de index.php : redirection HTTP 301 de -http://www.example.com/phpBB/index.php vers -http://www.example.com/phpBB/
Code:
RewriteRule /index.php http://www.herbalistsguide.com/phpBB/ [I,O,RP,L]
3) Les rewriterules du mod rewrite phpBB SEO Avancé :
Code:
# FORUM PROTECTION RULE
#RewriteRule /.+/([^/]+\.html)$ / [I,O,RP,L]
# CATEGORIES
RewriteRule /.+-vc([0-9]+)\.html$ /index.php\?c=$1 [I,L]
# PAGINATED FORUM
RewriteRule /.+-vf([0-9]+)-([0-9]+)\.html$ /viewforum.php\?f=$1&start=$2 [I,L]
# FORUM
#RewriteRule /.+-vf([0-9]+)\.html$ /viewforum.php\?f=$1 [I,L]
RewriteRule /.+-vf([0-9]+)\.html(?:\?(.*))? /viewforum.php\?f=$1?2&$2: [I,L]
# PAGINATED TOPIC
RewriteRule /.+-vt([0-9]+)-([0-9]+)\.html$ /viewtopic.php\?t=$1&start=$2 [I,L]
# TOPIC
RewriteRule /.+-vt([0-9]+)\.html(?:\?(.*))? /viewtopic.php\?t=$1?2&$2: [I,L]
#RewriteRule /.+-vt([0-9]+)\.html$ /viewtopic.php\?t=$1 [I,L]
# POST
RewriteRule /post([0-9]+)\.html$ /viewtopic.php\?p=$1 [I,L]
#PROFILES
RewriteRule /member([0-9]+)\.html$ /profile.php\?mode=viewprofile&u=$1 [I,L]
# END PHPBB PAGES
4) Si nécésaire : Les rewriterules de mx Sitemaps (version mod rewrite phpBB SEO Avancé )
Code:
#mx Sitemaps
RewriteRule /sitemaps\.html$ /sitemaps.php [I,L]
RewriteRule /forum-map\.html$ /sitemaps.php\?fim [I,L]
RewriteRule /.+-fmp([0-9]+)-([0-9]+)\.html$ /sitemaps.php\?fmp=$1&start=$2 [I,L]
RewriteRule /.+-fmp([0-9]+)\.html$ /sitemaps.php\?fmp=$1 [I,L]
RewriteRule /.+-sc([0-9]+)\.html$ /sitemaps.php\?c=$1 [I,L]
5) Si nécésaire : Les rewriterules de mx Google Sitemaps
Code:
# mx Google sitemaps
RewriteRule /sitemaps\.xml$ /sitemap.php\ [L]
RewriteRule /forum-sitemap-([0-9]+)\.xml$ /sitemap.php\?fid=$1 [L]
RewriteRule /sitemap-forum\.xml$ /sitemap.php\?forum [L]
On another note I get this as well
- Code: Select all
General Error
SQL ERROR [ mysqli ]
Table 'hgforum.phpbb3_gym_config' doesn't exist [1146]
SQL
SELECT * FROM phpbb3_gym_config
BACKTRACE
FILE: includes/db/mysqli.php
LINE: 143
CALL: dbal->sql_error()
FILE: gym_sitemaps/includes/gym_common.php
LINE: 48
CALL: dbal_mysqli->sql_query()
FILE: includes/acp/acp_gym_sitemaps.php
LINE: 73
CALL: obtain_gym_config()
FILE: includes/functions_module.php
LINE: 471
CALL: acp_gym_sitemaps->main()
FILE: adm/index.php
LINE: 74
CALL: p_master->load_active()
Probably something simple but after a 30 min instal I thought I would be up and running in no time - that was 9 hours ago.

English |
French


