Page 3 of 6 FirstFirst 12345 ... LastLast
Results 21 to 30 of 53
  1. #21
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Admin Page Won't Display.

    Turn off the Left Column in the Layout Settings ... does it load the page?

    Turn on the Left Column then turn off the Right Column ... does it load the page?
    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: v1.5.5]
    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!

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

    Default Re: Admin Page Won't Display.

    There's one thing I have to add here:


    the permissions of the /admin directory is 755. do i have to change it? if yes, to what permission should i change it?
    It doesn't require to be set on CHMOD 755 but, for your safety, it should rather be set to CHMOD 666.

  3. #23
    Join Date
    Jun 2006
    Posts
    16
    Plugin Contributions
    0

    Default Re: Admin Page Won't Display.

    Code:
    Turn off the Left Column in the Layout Settings ... does it load the page?
    
    Turn on the Left Column then turn off the Right Column ... does it load the page?
    Made no difference.

    I've been alternating between Firefox and Internet Explorer. I only just noticed when using firefox the error page it gives me is "The page isn't redirecting properly". Hope this can help

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

    Default Re: Admin Page Won't Display.

    In that case, what does your web error logs states about this problem ? If you post the errors here, it might be much easier to determine the source of the problem.

    Note: You will find these results under your cPanel access account.

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

    Default Re: Admin Page Won't Display.

    Was this a clean install of v1.3.0.1 or did you upgrade from another version?
    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: v1.5.5]
    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!

  6. #26
    Join Date
    Jun 2006
    Posts
    16
    Plugin Contributions
    0

    Default Re: Admin Page Won't Display.

    Clean install. Its the first time I've used Zen Cart (was recommended by a friend)

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

    Default Re: Admin Page Won't Display.

    Have you done a lot to the /includes/templates/classic directory of files?

    If not, rename to /includes/templates/black

    Now reload all of the files from Zen Cart v1.3.0.1 from a clean checkout from our site ...

    Something is really off on your site and I cannot tell if you changed a corefile or have a bad install etc.

    Reloading all of the files may help correct this ... for both the catalog and admin from a clean download ...
    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: v1.5.5]
    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!

  8. #28
    Join Date
    Jun 2006
    Posts
    16
    Plugin Contributions
    0

    Default Re: Admin Page Won't Display.

    Just finished. Removed ALL files from my server before I uploaded the files again. I also dropped all the tables from my database beforehand just to be sure.

    Catelogue works but I still cant load the admin page.

  9. #29
    Join Date
    Jun 2006
    Posts
    16
    Plugin Contributions
    0

    Default Re: Admin Page Won't Display.

    ... heres my admin/include/config.php file


    Code:
    <?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.newcastleprosound.com.au');
      define('HTTPS_SERVER', 'https://www.newcastleprosound.com.au');
      define('HTTP_CATALOG_SERVER', 'http://www.newcastleprosound.com.au');
      define('HTTPS_CATALOG_SERVER', 'https://www.newcastleprosound.com.au');
    
      // 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', '/store/admin/');
      define('DIR_WS_CATALOG', '/store/');
      define('DIR_WS_HTTPS_ADMIN', '/store/admin/');
      define('DIR_WS_HTTPS_CATALOG', '/store/');
    
      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', '/s101/home4/prosound/store/admin/');
      define('DIR_FS_CATALOG', '/s101/home4/prosound/store/');
    
      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', 'store_');
      define('DB_SERVER', 'mysql'); // eg, localhost - should not be empty
      define('DB_SERVER_USERNAME', 'db');
      define('DB_SERVER_PASSWORD', 'pwd');
      define('DB_DATABASE', 'db');
      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', '/s101/home4/prosound/store/cache');
    
    ?>

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

    Default Re: Admin Page Won't Display.


    define('DB_SERVER', 'mysql'); // eg, localhost - should not be empty
    Hopefully this line has been edited for the quote above. Otherwise, it has to be localhost ' or ' a remote SQL server name.

    In the mean time, please post your URL pointing to your techsupp.php file. If you do not know where to find this file, simply go to your local zc_install folder and upload it to your Zen Cart's root folder on your server.

 

 
Page 3 of 6 FirstFirst 12345 ... LastLast

Similar Threads

  1. Fresh install - won't display Admin
    By 4thwave in forum Upgrading from 1.3.x to 1.3.9
    Replies: 14
    Last Post: 3 Dec 2010, 11:15 PM
  2. About Us Page won't display
    By RobertG in forum Templates, Stylesheets, Page Layout
    Replies: 14
    Last Post: 13 Jun 2010, 02:41 AM
  3. Shop won't display & can't get into admin
    By wobble in forum General Questions
    Replies: 6
    Last Post: 31 Jan 2010, 07:24 PM
  4. Login page won't display.
    By Jman9912 in forum General Questions
    Replies: 18
    Last Post: 11 Jul 2009, 02:15 PM
  5. admin window won't display too
    By ericpeng in forum Customization from the Admin
    Replies: 1
    Last Post: 20 Jun 2006, 05:55 AM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR