We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 39919
    • 1 Posts
    I can login on the link yoursite/manager and then I see a blank site with lots of links..

    This is right after installation and I haven't changed anything.

      • 1343 ☆ A M B ☆
      • 2,213 Posts
      Hello,

      Can you check that compress_css and compress_js are disabled (see modx_site_settings table), and see if that helps any?
        Patrick | Server Wrangler
        About Me: Website | Tweets |  MODX Hosting
        • 39559
        • 34 Posts
        I am currently using BlueHost for all my hosting for my sites. They implement SimpleScripts for one click installs...
        I installed one site running 2.2.0-pl2 no problem
        installed another instance for another site - 2.2.1-pl - and i got something similar to the OP. manager page wasnt properly themed and if i got logged in there was no styling at all.

        tracked it down to a bad config in the install.

        core/config/config.inc.php

        $modx_connectors_url= '//connectors/';
        $modx_manager_url= '//manager/';
        $modx_base_url= '//';
        $modx_assets_url= '//assets/';
        


        if you notice it has an extra / in the url entries

        this is what it should look like:
        $modx_connectors_url= '/connectors/';
        $modx_manager_url= '/manager/';
        $modx_base_url= '/';
        $modx_assets_url= '/assets/';
        


        you might check your config file to verify as well. just a suggestion if it happens to be a similar issue.