QUOTE (OtherNiceMan @ Jul 27 2008, 11:13 AM)

do you have an .htaccess file in your directory, if so what is the content.
Also the link you posted points to an entry, which from what I read you are still publishing statically, do you have php set as the extension?
Yea, the links in the template seem to point to static entries and when you click them you get a 404 because they don't exist. It should be redirected through mtview from what I gathered, but I don't think its getting that far. Do I need to adjust a setting or template somehow to force it to point to mtview?
I checked my Apache 2 configs and it tells me I have mod_rewrite on and that everything is kosher.
Also if I type in
http://elmo/ffp_local/mtview.php I get what I can assume is an MT specific 404 page as its using my MT style and site name to tell me "Page not found - /ffp_local/mtview.php" instead of the default apache 2 404.
Here is the .htaccess file in /srv/www/htdocs/ffp_local. Its the default generated MT one as this is a local install for testing and I don't need lots of customization.
CODE
## %%%%%%% Movable Type generated this part; don't remove this line! %%%%%%%
# Disable fancy indexes, so mtview.php gets a chance...
Options -Indexes +SymLinksIfOwnerMatch
<IfModule mod_rewrite.c>
# The mod_rewrite solution is the preferred way to invoke
# dynamic pages, because of its flexibility.
# Add mtview.php to the list of DirectoryIndex options, listing it last,
# so it is invoked only if the common choices aren't present...
<IfModule mod_dir.c>
DirectoryIndex index.php index.html index.htm default.htm default.html default.asp /ffp_local/mtview.php
</IfModule>
RewriteEngine on
# don't serve mtview.php if the request is for a real directory
# (allows the DirectoryIndex lookup to function)
RewriteCond %{REQUEST_FILENAME} !-d
# don't serve mtview.php if the request is for a real file
# (allows the actual file to be served)
RewriteCond %{REQUEST_FILENAME} !-f
# anything else is handed to mtview.php for resolution
RewriteRule ^(.*)$ /ffp_local/mtview.php [L,QSA]
</IfModule>
<IfModule !mod_rewrite.c>
# if mod_rewrite is unavailable, we forward any missing page
# or unresolved directory index requests to mtview
# if mtview.php can resolve the request, it returns a 200
# result code which prevents any 4xx error code from going
# to the server's access logs. However, an error will be
# reported in the error log file. If this is your only choice,
# and you want to suppress these messages, adding a "LogLevel crit"
# directive within your VirtualHost or root configuration for
# Apache will turn them off.
ErrorDocument 404 /ffp_local/mtview.php
ErrorDocument 403 /ffp_local/mtview.php
</IfModule>
## ******* Movable Type generated this part; don't remove this line! *******