Here's my initial findings on problems. I have a feeling a lot can be fixed by curing the JS errors, particularly the last one:
First is the dead login box. The login shouldn't do anything fancy but take a username and password and log you in. I think it's expecting a non-existant cookie (until it runs the first time and opens the manager, any way). I had to change line 152 of /manager/accesscontrol.inc.php to:
<div id="splash" style="visibility:<?php echo $_COOKIE["MODxLoginSpash"]=='on' ? "visible":"visible"; ?>;width:600px">
Next it tried to open a popup window in Firefox when I logged in. The popup blocker prevented it form opening. I then tried to reload the page, and a couple of other things, and it redirected it to the Etomite site (seriously) in a popup window (I probably clicked on a non-visible page). It then proceeded to mangle the manager so bad in Firefox that it locked up the browser, and I had to force quit it.
Upon returning, I logged back into the manager, and managed to login but got a scripting error page to appear that I've never seen in Etomite, but it is an etomite original page because it asked to report files back to the Etomite bug tracker. No actual error was reported in the popup though.
When trying to switch to the advance manager layout, I get the following errors (in both Safari and in Firefox):
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/httpd/vhosts/pixelhick.com/httpdocs/manager/processors/cache_sync.class.processor.php on line 135
Warning: Cannot modify header information - headers already sent by (output started at /home/httpd/vhosts/pixelhick.com/httpdocs/manager/processors/cache_sync.class.processor.php:135) in /home/httpd/vhosts/pixelhick.com/httpdocs/manager/processors/save_settings.processor.php on line 35
Worst of all, the tree menu does not render, which is probably due to the following JS errors (particuarly the very last one).
------------------------------------
Numerous JS errors...
------------------------------------
When logging out:
Error: DynElement is not defined
Source File:
http://pixelhick.com/manager/index.php?a=1&f=5
Line: 112
Error: el.attachEvent is not a function
Source File:
http://pixelhick.com/manager/media/script/cb2.js
Line: 32
When logging in:
Warning: Element referenced by ID/NAME in the global scope. Use W3C standard document.getElementById() instead.
Source File:
http://pixelhick.com/manager/index.php?a=1&f=5
Line: 1
Error: document.setIncludePath is not a function
Source File:
http://pixelhick.com/manager/index.php?a=1&f=3
Line: 15
When doing pretty much anything:
Error: DynElement is not defined
Source File:
http://pixelhick.com/manager/index.php?a=1&f=5
Line: 112
Hope this helps...