I ran in to this problem a few weeks ago when I was on 2kb Dial-up.
When the manager is logged in and they go to a page that is acting as a folder e.g.. (
http://www.example.com/products/product1.html) QM+ is trying to find "
http://www.example.com/products/assets/plugins/qm/res/style.css" in stead of "
http://www.example.com/assets/plugins/qm/res/style.css"
In the file "qm.inc.php" at line 140 the base url is not set for the css file and so we have the above problem
this is what it is at the moment
$css = '<link rel="stylesheet" type="text/css" href="assets/plugins/qm/res/style.css" />';
this is how it should be to make it work correctly with the above example
$css = '<link rel="stylesheet" type="text/css" href="' . MODX_BASE_URL. 'assets/plugins/qm/res/style.css" />';
I hope this can help someone and that it can be fixed in the next up date.
Cameron