The answer might lie there.
If your server has MOD rewrite enabled and you have your extensions url all broken, there's a trouble on your server side.
OPEN
Code: Select all
.htaccess
(the one in your phpBB root)
FIND
Code: Select all
<IfModule mod_rewrite.c>
RewriteEngine on
AFTER, ADD
Code: Select all
RewriteBase /{yourphpBBpath}/
Examples
1 - Your board is in http://www.example.com
Code: Select all
RewriteBase /
2 - your board is in http://www.example.com/phpBB
Code: Select all
RewriteBase /phpBB/
3 - your board is in http://www.example.com/php/phpBB
Code: Select all
RewriteBase /php/phpBB