Also noticed that the .htaccess file's rewrite base is wrong.
I thought by default it should be /
However its: RewriteBase /svn/trunk
Also a comment line missing.
Incorrect .htaccess:
DirectoryIndex index.html index.php
<IfModule mod_rewrite.c>
RewriteEngine on
# Some hostings require RewriteBase to be uncommented
# Example:
# Your store url is http://www.yourcompany.com/store/cart
# So "RewriteBase" should be:
RewriteBase /svn/trunk
RewriteCond %{REQUEST_FILENAME} !\.(png|gif|ico|swf|jpe?g|js|css)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php?sef_rewrite=1 [L,QSA]
</IfModule>
Correct .htaccess:
DirectoryIndex index.html index.php
<IfModule mod_rewrite.c>
RewriteEngine on
# Some hostings require RewriteBase to be uncommented
# Example:
# Your store url is http://www.yourcompany.com/store/cart
# So "RewriteBase" should be:
# RewriteBase /store/cart
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !\.(png|gif|ico|swf|jpe?g|js|css)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php?sef_rewrite=1 [L,QSA]
</IfModule>
EDIT:Just noticed another small issue, when you go to settings -> dynamic html, the page title shows "_DHTML" in stead of "Dynamic Html". Again only something very small but thought I'd give you a heads up
EDIT2:Ok found another bug, when you upload a product image (large, so that it auto generates the thumb) the thumbs are generated however, they don't show on the products overview page in admin (i.e. admin.php?dispatch=products.manage.last_view).