I just registered to ask the same question, before I found your post.
I just migrated here from wordpress. I was led to believe that WP could do what I wanted (ie: make a website, not a blog). Suffice to say that the hoops I had to jump through were more than my time is worth. While I was flapping around wondering what to do next, I picked up a new client who needed a website with a CMS that they could cope with themselves, and I stumbled across CMSMS. Absolutely love it.
Anyway, enough rambling. One of the biggest hurdles I managed to surpass with WP was the use of ISAPI_rewrite for permalinks. I have very annoying IIS hosting, which causes problems aplenty with open source software.
Perhaps we can work together to get ISAPI_rewrite working for the unfortunate IIS CMSMS users?
Here is the httpd.ini that I used for wordpress:
Code: Select all
[ISAPI_Rewrite]
# Rules to ensure that normal content gets through
RewriteRule /images/(.*) /images/$1 [L]
RewriteRule /favicon.ico /favicon.ico [L]
# For file-based wordpress content (i.e. theme), admin, etc.
RewriteRule /wp-(.*) /wp-$1 [L]
# For normal wordpress content, via index.php
RewriteRule ^/$ /index.php [L]
RewriteRule /(.*) /index.php/$1 [L]
I can't remember exactly where I picked these rules up from, but I have a big bunch of bookmarks on the subject if you're interested.
Hope this can be of some help.