Hi! Im new to using modx and php, but ive had experiences using cms built in Java. (openCms, lenya).
So far, im having more fun using modx!

Props!
Anyway, here's what i can contribute:
For those who are trying to install a staging site on Windows, this can help you in configuring FURLs:
Specs:
Windows XP
Apache2
MySQL 5
PHP 5.1.4
1) Go to administration -> System Configuration -> Friendly URL Settings
2) Set Use Friendly URLs to Yes. Just set every option by default for now.
3) Rename ht.access to .htaccess inside modx root. (i.e. C:\Apache2\htdocs\modx\ht.access -> C:\Apache2\htdocs\modx\.htaccess)
4) Edit .htaccess
comment these lines,
php_flag zlib.output_compression On
php_value zlib.output_compression_level 5
change this,
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA] into
RewriteRule ^(.*)$
/modx/index.php?q=$1 [L,QSA]
5) Edit the configuration file of Apache 2.
Uncomment this line,
#LoadModule rewrite_module modules/mod_rewrite.so
and change this
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride None
into
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride
AllNote: There are about 5-6 AllowOverride string inside httpd.conf. Change the one above specifically.

6) Reload Apache.
That's it! Whew!
