We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 36435
    • 40 Posts
    HI Guys.
    I've just uploaded a site - http://greenitsummit.co.za/ - I moved it from my localhost to do teh last stages of development live.
    all the pages are loding OK - except I can't get into Manager - I get the message "Site temporarily unavailable!"

    I don't even get to see the login screen.

    I've updated the config.core.php files in

    /core/config/
    /manager/
    /connectors/

    In case I made a mmistake along the way, here's what i have in /manager/config.core.php

    <?php
    define('MODX_CORE_PATH', '/usr/www/users/greennxgmj/public_html/core/');
    define('MODX_CONFIG_KEY', 'config');


    any Ideas where I might be going wrong?

    BTW - I'm using Modx Revo 2.1.5 pl

    Please help...

    and thanks
    Jo

    [ed. note: justimaging last edited this post 14 years, 10 months ago.]
      • 36435
      • 40 Posts
      Anyone...? please...?
        • 3749
        • 24,544 Posts
        That path looks wrong to me, though it depends on your host. Take a look in cPanel's file manager and check it against the actual path to the core directory (if you haven't done that already).

        Note that you'll have to edit the other config.core.php files as well:

        § MODX root directory
        § /manager/
        § /connectors/
        § /setup/includes/ (if the setup dir. is still there)

        And check the paths in core/config/config.inc.php

          Did I help you? Buy me a beer
          Get my Book: MODX:The Official Guide
          MODX info for everyone: http://bobsguides.com/modx.html
          My MODX Extras
          Bob's Guides is now hosted at A2 MODX Hosting
          • 36435
          • 40 Posts
          Hi Bob.
          Thanks - took down the site and re-uploaded everything - the path that finally worked was
            $modx_core_path= '/usr/www/users/greennxgmj/core/';


          all working fine now - cheers!
            • 3749
            • 24,544 Posts
            That looks much better. smiley


            Usually, www is an alias for public_html, so it would be very unusual to have both of them in the path -- and it would likely make the server run in circles.

            Odds are that this would have worked also:

            $modx_core_path= '/usr/public_html/users/greennxgmj/core/';
              Did I help you? Buy me a beer
              Get my Book: MODX:The Official Guide
              MODX info for everyone: http://bobsguides.com/modx.html
              My MODX Extras
              Bob's Guides is now hosted at A2 MODX Hosting
              • 36435
              • 40 Posts
              Thanks BobRay. I hadn't thought about the www and public_html relationship. Makes much more sense now.