Just a simple fix for Housekeeping on RevCMS if your using IIS.
you will need this:
HeliCON for .htaccess to configure with IIS. After you have installed this Restart IIS.
Then download this HK Fix
HK_Fix
Instruction after that;
Add hk to your skin folder so it looks like this: app/tpl/skins/Habbo/hk - Then while there edit
PHP Code:
action="index.php?url=dash"
to
PHP Code:
action="index.php?url=login">
code can be found in hk/login.php /file
Then Head to /wwwroot/app/
Replace your class.core.php and class.template.php with the files included in the Housekeeping Fix Folder above.
Then you will have your .htaccess fixed for IIS working but for CMS to work you will still need WEB.config file :
PHP Code:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 1">
<match url="^(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 2">
<match url="^([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 3">
<match url="^(.*)\.htm$" />
<action type="Rewrite" url="{R:1}.php" />
</rule>
<rule name="Imported Rule 4">
<match url="^(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?page={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 5">
<match url="^([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url={R:1}" appendQueryString="false" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Add this to c:/inetpub/wwwroot - (make sure to save it as web.config)
Then your housekeeping should work 100% if you go to this link: http://127.0.0.1/ase/index.php?url=login
http://prntscr.com/59o45
This how I got my HK working the other tutorials all fail. 
Any problems say below, thanks!!