Page 1 of 3 123 LastLast
Results 1 to 10 of 21
  1. #1
    Join Date
    Jun 2006
    Posts
    19
    Plugin Contributions
    0

    Can't get in to Admin

    Hi,

    Whenever I log into admin I just get 'file not found.' The admin log in page comes up but when I fill in my details and press enter I just get 'file not found.' Have turned off SSL. Have tried reinstalling whole thing and admin folder. Tried changing htpaccess thingy.

    This is all very new to me and I've looked through and tried all the previous suggestions in the last few pages. Any suggestions?

    The Zencart version is the latest. Am on oneandone Linux hosting. The two configure files are:

    <?php
    //
    /**
    *
    * @package Configuration Settings
    * @copyright Copyright 2003-2006 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    */


    // Define the webserver and path parameters
    // Main webserver: eg, http://localhost - should not be empty for productive servers
    // HTTP_SERVER is your Main webserver: eg, http://www.yourdomain.com
    // HTTPS_SERVER is your Secure webserver: eg, https://www.yourdomain.com
    // HTTP_CATALOG_SERVER is your Main webserver: eg, http://www.yourdomain.com
    // HTTPS_CATALOG_SERVER is your Secure webserver: eg, https://www.yourdomain.com
    /*
    * URLs for your site will be built via:
    * HTTP_SERVER plus DIR_WS_ADMIN or
    * HTTPS_SERVER plus DIR_WS_HTTPS_ADMIN or
    * HTTP_SERVER plus DIR_WS_CATALOG or
    * HTTPS_SERVER plus DIR_WS_HTTPS_CATALOG
    * ...depending on your system configuration settings
    */
    define('HTTP_SERVER', 'http://www.talentedtrinkets.com');
    define('HTTPS_SERVER', 'https://sslrelay.com/talentedtrinkets.com');
    define('HTTP_CATALOG_SERVER', 'http://www.talentedtrinkets.com');
    define('HTTPS_CATALOG_SERVER', 'https://sslrelay.com/talentedtrinkets.com');

    // Use secure webserver for catalog module and/or admin areas?
    define('ENABLE_SSL_CATALOG', 'false');
    define('ENABLE_SSL_ADMIN', 'false');

    // NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
    // * DIR_WS_* = Webserver directories (virtual/URL)
    // these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
    define('DIR_WS_ADMIN', '/catalogue/admin/');
    define('DIR_WS_CATALOG', '/catalogue/');
    define('DIR_WS_HTTPS_ADMIN', '/catalogue/admin/');
    define('DIR_WS_HTTPS_CATALOG', '/catalogue/');

    define('DIR_WS_IMAGES', 'images/');
    define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
    define('DIR_WS_CATALOG_IMAGES', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'images/');
    define('DIR_WS_CATALOG_TEMPLATE', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'includes/templates/');
    define('DIR_WS_INCLUDES', 'includes/');
    define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
    define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
    define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
    define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
    define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
    define('DIR_WS_CATALOG_LANGUAGES', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'includes/languages/');

    // * DIR_FS_* = Filesystem directories (local/physical)
    //the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/
    define('DIR_FS_ADMIN', '/kunden/homepages/9/d161888078/htdocs/Catalogue/admin/');
    define('DIR_FS_CATALOG', '/kunden/homepages/9/d161888078/htdocs/Catalogue/');

    define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/');
    define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');
    define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
    define('DIR_FS_CATALOG_TEMPLATES', DIR_FS_CATALOG . 'includes/templates/');
    define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');
    define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');
    define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

    // define our database connection
    define('DB_TYPE', 'mysql');
    define('DB_PREFIX', '');
    define('DB_SERVER', 'db192.oneandone.co.uk'); // eg, localhost - should not be empty
    define('DB_SERVER_USERNAME', '');
    define('DB_SERVER_PASSWORD', );
    define('DB_DATABASE', '');
    define('USE_PCONNECT', 'false'); // use persistent connections?
    define('STORE_SESSIONS', 'db'); // leave empty '' for default handler or set to 'db'

    // The next 2 "defines" are for SQL cache support.
    // For SQL_CACHE_METHOD, you can select from: none, database, or file
    // If you choose "file", then you need to set the DIR_FS_SQL_CACHE to a directory where your apache
    // or webserver user has write privileges (chmod 666 or 777). We recommend using the "cache" folder inside the Zen Cart folder
    // ie: /path/to/your/webspace/public_html/zen/cache -- leave no trailing slash
    define('SQL_CACHE_METHOD', 'none');
    define('DIR_FS_SQL_CACHE', '/kunden/homepages/9/d161888078/htdocs/Catalogue/cache');

    ?>

    And:

    <?php
    /**
    *
    * @package Configuration Settings
    * @copyright Copyright 2003-2006 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    */


    // Define the webserver and path parameters
    // HTTP_SERVER is your Main webserver: eg, http://www.yourdomain.com
    // HTTPS_SERVER is your Secure webserver: eg, https://www.yourdomain.com
    define('HTTP_SERVER', 'http://www.talentedtrinkets.com');
    define('HTTPS_SERVER', 'https://sslrelay.com/talentedtrinkets.com');

    // Use secure webserver for checkout procedure?
    define('ENABLE_SSL', 'false');

    // NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
    // * DIR_WS_* = Webserver directories (virtual/URL)
    // these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
    define('DIR_WS_CATALOG', '/catalogue/');
    define('DIR_WS_HTTPS_CATALOG', '/catalogue/');

    define('DIR_WS_IMAGES', 'images/');
    define('DIR_WS_INCLUDES', 'includes/');
    define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
    define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
    define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
    define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
    define('DIR_WS_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/');
    define('DIR_WS_TEMPLATES', DIR_WS_INCLUDES . 'templates/');

    define('DIR_WS_PHPBB', '/');

    // * DIR_FS_* = Filesystem directories (local/physical)
    //the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/
    define('DIR_FS_CATALOG', '/kunden/homepages/9/d161888078/htdocs/Catalogue/');

    define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
    define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
    define('DIR_WS_UPLOADS', DIR_WS_IMAGES . 'uploads/');
    define('DIR_FS_UPLOADS', DIR_FS_CATALOG . DIR_WS_UPLOADS);
    define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');

    // define our database connection
    define('DB_TYPE', 'mysql');
    define('DB_PREFIX', '');
    define('DB_SERVER', 'db192.oneandone.co.uk'); // eg, localhost - should not be empty
    define('DB_SERVER_USERNAME', '');
    define('DB_SERVER_PASSWORD', );
    define('DB_DATABASE', '');
    define('USE_PCONNECT', 'false'); // use persistent connections?
    define('STORE_SESSIONS', 'db'); // leave empty '' for default handler or set to 'db'

    // The next 2 "defines" are for SQL cache support.
    // For SQL_CACHE_METHOD, you can select from: none, database, or file
    // If you choose "file", then you need to set the DIR_FS_SQL_CACHE to a directory where your apache
    // or webserver user has write privileges (chmod 666 or 777). We recommend using the "cache" folder inside the Zen Cart folder
    // ie: /path/to/your/webspace/public_html/zen/cache -- leave no trailing slash
    define('SQL_CACHE_METHOD', 'none');
    define('DIR_FS_SQL_CACHE', '/kunden/homepages/9/d161888078/htdocs/Catalogue/cache');

    ?>

    Any ideas? And have I left in any hackable info?

    Thanks!

    Claire

  2. #2
    Join Date
    Jun 2006
    Posts
    14
    Plugin Contributions
    0

    Default Re: Can't get in to Admin

    I have the exact same problem, it just started today...this is scary!

  3. #3
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Can't get in to Admin

    Claire ... you have a mixed case on your site ...

    You have in the configure.php

    /catalogue/
    /catalogue/admin/

    But your site is using
    /Catalogue/
    /Catalogue/admin/

    rename the directory for your site from:

    /Catalogue

    to be:

    /catalogue

    You really do not want upcase on the web ... no one would think to type it that way ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  4. #4
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Can't get in to Admin

    Claire ... also fix any uppercase for Catalogue and change to lowercase catalogue in both of your configure.php files ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  5. #5
    Join Date
    Jun 2006
    Posts
    14
    Plugin Contributions
    0

    Default Re: Can't get in to Admin

    Any idea why my login page won't show up now?

    https://www.martianchurch.com/shop/admin/

    this was working on the weekend...

  6. #6
    Join Date
    Nov 2004
    Location
    Norfolk, United Kingdom
    Posts
    3,036
    Plugin Contributions
    2

    Default Re: Can't get in to Admin

    Well, first of all you don't appear to have a full ssl certificate on your website, and that link is https.

    You also have your website configured to use https connections for a full ssl cert - so those areas don't load either.

    If you do actually have a full ssl cert installed then it may be that your host ran some upgrade or other which destablised any full ssl certs on that server - in which case get on to them and tell them what's happened.

    Vger
    Quote Originally Posted by frostyy
    Any idea why my login page won't show up now?

    https://www.martianchurch.com/shop/admin/

    this was working on the weekend...

  7. #7
    Join Date
    Jun 2006
    Posts
    14
    Plugin Contributions
    0

    Default Re: Can't get in to Admin

    Yeah, it looks like the SSL is out of date. Thanks.

  8. #8
    Join Date
    Jun 2006
    Posts
    19
    Plugin Contributions
    0

    Default Re: Can't get in to Admin

    Hi

    Well I gave that a go and now I've got...

    Warning: main(/kunden/homepages/9/d/htdocs/Catalogue/includes/autoload_func.php): failed to open stream: No such file or directory in /homepages/9/d/htdocs/catalogue/admin/includes/application_top.php on line 145

    Fatal error: main(): Failed opening required '/kunden/homepages/9/d/htdocs/Catalogue/includes/autoload_func.php' (include_path='.:/usr/local/lib/php') in /homepages/9/d/htdocs/catalogue/admin/includes/application_top.php on line 145

    Am going to try the install again and not use capitals.

    Coley

  9. #9
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Can't get in to Admin

    NOTE: make sure the directory on the site is set as:
    /catalogue

    Then make sure you use lowercase whenever you refer to it ...

    unix is fussy about that Catalogue is not the same as catalogue ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  10. #10
    Join Date
    Jun 2006
    Posts
    19
    Plugin Contributions
    0

    Default Re: Can't get in to Admin

    Thank you I'm going to be very careful about that now! Will tell you how it goes.

 

 
Page 1 of 3 123 LastLast

Similar Threads

  1. Can't get to admin
    By richo1 in forum General Questions
    Replies: 0
    Last Post: 8 Nov 2008, 02:25 PM
  2. Replies: 3
    Last Post: 20 Jul 2008, 12:12 PM
  3. Can't get to Admin
    By TeamTJ in forum General Questions
    Replies: 3
    Last Post: 2 Apr 2007, 03:47 PM
  4. I can't get to admin
    By mochi in forum Installing on a Windows Server
    Replies: 4
    Last Post: 9 Aug 2006, 05:51 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg