Results 1 to 3 of 3
  1. #1
    Join Date
    Nov 2006
    Location
    London, UK
    Posts
    132
    Plugin Contributions
    0

    Default Blank Admin screen - please help!!

    I have recently had a blank screen on my admin page. There is nothing being processed - no code in the background, nothing. I have reinstalled the admin side of the shop 3 times, checked and re-checked the configure.php, and nothing... the strange thing is it was working fine, and I have made no recent changes. The only thing that is different is I added the Ultimate URLs mod about 3 days before this problem began. Someone please help me! I can't get into admin at all :-(

    The address of my admin is http://www.magicalrussiandolls.com/stockroom/

    This is my configure.php (certain parts blanked out)

    <?php
    //
    // +----------------------------------------------------------------------+
    // |zen-cart Open Source E-commerce |
    // +----------------------------------------------------------------------+
    // | Copyright (c) 2003 The zen-cart developers |
    // | |
    // | http://www.zen-cart.com/index.php |
    // | |
    // | Portions Copyright (c) 2003 osCommerce |
    // +----------------------------------------------------------------------+
    // | This source file is subject to version 2.0 of the GPL license, |
    // | that is bundled with this package in the file LICENSE, and is |
    // | available through the world-wide-web at the following url: |
    // | http://www.zen-cart.com/license/2_0.txt. |
    // | If you did not receive a copy of the Zen Cart license and are unable |
    // | to obtain it through the world-wide-web, please send a note to |
    // | [email protected] so we can mail you a copy immediately. |
    // +----------------------------------------------------------------------+
    // $Id: dist-configure.php 4095 2006-08-08 02:32:01Z drbyte $
    //

    // 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
    // HTTP_CATALOG_SERVER is your Main webserver: eg, http://www.yourdomain.com
    // HTTPS_CATALOG_SERVER is your Secure webserver: eg, https://www.yourdomain.com
    /*
    * URL's 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.magicalrussiandolls.com');
    define('HTTPS_SERVER', 'https://*******l.com/dreamofrussia.com');
    define('HTTP_CATALOG_SERVER', 'http://www.magicalrussiandolls.com');
    define('HTTPS_CATALOG_SERVER', 'https://*******/dreamofrussia.com');

    // 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', '/stockroom/');
    define('DIR_WS_CATALOG', '/');
    define('DIR_WS_HTTPS_ADMIN', '/stockroom/');
    define('DIR_WS_HTTPS_CATALOG', '/');

    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', '/var/www/html/stockroom/');
    define('DIR_FS_CATALOG', '/var/www/html/');

    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', '*******');
    define('DB_SERVER_USERNAME', '*******');
    define('DB_SERVER_PASSWORD', '*******');
    define('DB_DATABASE', '*******');
    define('USE_PCONNECT', 'false'); // use persistent connections?
    define('STORE_SESSIONS', 'db'); // use 'db' for best support, or '' for file-based storage

    // 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', '/var/www/html/cache');

    ?>

  2. #2
    Join Date
    Aug 2004
    Posts
    1,590
    Plugin Contributions
    1

    Default Re: Blank Admin screen - please help!!

    Have you, by any chance, installed this MOD:

    http://www.zen-cart.com/forum/showth...t=Ultimate+URL

    ?

    If so, this problem is also reported under the official topic. Perhaps the author could help you out with the problem you currently have with the MOD.

  3. #3
    Join Date
    Nov 2006
    Location
    London, UK
    Posts
    132
    Plugin Contributions
    0

    Default Re: Blank Admin screen - please help!!

    Hi - yes... but it was working for about 2 days AFTER I installed the mod...

    anyway... I have finally found a fix!! Went through my error logs, discovered that I was missing a file, restored that file, and it works!!

 

 

Similar Threads

  1. v154 Blank screen when i goto Admin login...... help please...
    By amebb in forum General Questions
    Replies: 17
    Last Post: 21 Jul 2015, 11:31 AM
  2. v150 Admin page Blank - Please Help!
    By missnura_com in forum General Questions
    Replies: 4
    Last Post: 16 Feb 2012, 11:13 PM
  3. v150 Admin page Blank - Please Help! Its empty
    By missnura_com in forum General Questions
    Replies: 1
    Last Post: 16 Feb 2012, 03:08 PM
  4. Help Please - how do I find my admin screen?
    By ladycage in forum General Questions
    Replies: 1
    Last Post: 26 Feb 2008, 03:16 PM
  5. Blank Admin Login Page - Help me please!
    By mipavluk in forum Installing on a Linux/Unix Server
    Replies: 2
    Last Post: 29 Jan 2008, 02:33 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