Page 3 of 3 FirstFirst 123
Results 21 to 27 of 27
  1. #21
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Blazed and confused

    Try renaming your admin back to 'admin' and see what happens ...
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  2. #22
    Join Date
    Jan 2007
    Posts
    15
    Plugin Contributions
    0

    Default Re: Blazed and confused

    HI,
    I tried renaming the admin folder on the web server.
    I also renamed the admin folder in both of the configure.php files.
    When I try to access the admin through the browser it's still not working. It gives me the error:
    ERROR: admin/includes/configure.php file not found. Suggest running zc_install/index.php?
    Any other ideas?
    Sorry, I'm getting worried I may have to reinstall.
    Thanks.

  3. #23
    Join Date
    Oct 2006
    Location
    Alberta, Canada
    Posts
    4,571
    Plugin Contributions
    1

    Default Re: Blazed and confused

    I also renamed the admin folder in both of the configure.php files.

    That's not right. There is no reference to the Admin section within the main config file.


    In an earlier post, you also posted something which is not correct; or perhaps a typo when you were doing the post?

    Actual Information

    Read DIR_FS_SQL_CACHE from configure.php: /home/user/public_html/cache
    Found SESSION_WRITE_DIRECTORY in database: /home/ueser/public_html/cache

  4. #24
    Join Date
    Jan 2007
    Posts
    15
    Plugin Contributions
    0

    Default Re: Blazed and confused

    Hi Rob,
    Sorry I did make a typo when I referred to user in a previous post.
    I also looked an there is no reference to admin in the main configure.php file.
    I was able to access my admin before moving zencart from a subdirectory up to the root. Now I'm not able to access the admin site through the browser. Although the site seems to be functioning fine. I'm hoping I've modified the admin/includes/configure.php file correctly but it appears something is still incorrect.
    Here is what the file currently reads:
    (I've replaced the account name with the word user and the actual admin folder name is replaced with the word admin)
    <?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
    */

    /*************** NOTE: This file is similar, but DIFFERENT from the "store" version of configure.php. ***********/
    /*************** The 2 files should be kept separate and not used to overwrite each other. ***********/
    // 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.domainname.com');
    define('HTTPS_SERVER', 'https://www.domainname.com');
    define('HTTP_CATALOG_SERVER', 'http://www.domainname.com');
    define('HTTPS_CATALOG_SERVER', 'https://www.domainname.com');
    // Use secure webserver for catalog module and/or admin areas?
    define('ENABLE_SSL_CATALOG', 'true');
    define('ENABLE_SSL_ADMIN', 'true');
    // 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', '/admin/');
    define('DIR_WS_CATALOG', '/');
    define('DIR_WS_HTTPS_ADMIN', '/admin/');
    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', '/home/username/public_html/admin/');
    define('DIR_FS_CATALOG', '/home/username/public_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', 'zen_');
    define('DB_SERVER', 'localhost');
    define('DB_SERVER_USERNAME', 'username_zc1');
    define('DB_SERVER_PASSWORD', 'password');
    define('DB_DATABASE', 'username_zc1');
    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', 'database');
    define('DIR_FS_SQL_CACHE', '/home/username/cache');
    ?>
    I've also run the fix_cache_key.php. And that seems to be configured correctly.

    Any advise you can give would be really appreciated. I'm hoping it's an easy fix, but I've run out of ideas on what else to do.
    Thanks!

  5. #25
    Join Date
    Oct 2006
    Location
    Alberta, Canada
    Posts
    4,571
    Plugin Contributions
    1

    Default Re: Blazed and confused

    Two things of interest in the file you posted.

    Do you have a Dedicated SSL Cert and is it made out to 'www.yourdomain.com'?

    This line is incorrect:
    define('DIR_FS_SQL_CACHE', '/home/username/cache');
    ?>


    Should be:
    define('DIR_FS_SQL_CACHE', '/home/username/public_html/cache');
    ?>

  6. #26
    Join Date
    Jan 2007
    Posts
    15
    Plugin Contributions
    0

    Default Re: Blazed and confused

    I just decided to reinstall. It was actually faster just to save my template and reinstall. Thank goodness I hadn't added all the products. I couldn't figure it out why the admin wouldn't work. But thanks for your help!

  7. #27
    Join Date
    Aug 2004
    Location
    New York City
    Posts
    7,174
    Plugin Contributions
    0

    Default Re: Blazed and confused

    Let's say you renamed your admin folder fred (just for the example). Check the values in red (color selected by me) in fred/includes/configure.php. If it says /admin/ instead of /fred/ that's your problem.

    Code:
    // 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', '/fred/');
      define('DIR_WS_CATALOG', '/');
      define('DIR_WS_HTTPS_ADMIN', '/fred/');
      define('DIR_WS_HTTPS_CATALOG', '/');
    Mary Ellen
    I came; I saw; I Zenned
    Taking over the world... one website at a time
    Make sure brain is engaged before putting mouth in gear... or fingers to keyboard.

    Holzheimer
    Fan Odyssey

 

 
Page 3 of 3 FirstFirst 123

Similar Threads

  1. Express and Pro... I'm confused
    By s_mack in forum PayPal Website Payments Pro support
    Replies: 4
    Last Post: 3 Sep 2010, 11:18 PM
  2. I'm new and confused!
    By Newbie84 in forum Templates, Stylesheets, Page Layout
    Replies: 13
    Last Post: 10 Jan 2009, 10:28 PM
  3. Newbie and very confused
    By maxapplle in forum Installing on a Linux/Unix Server
    Replies: 1
    Last Post: 17 Dec 2006, 06:55 AM
  4. dazed and confused
    By barefootedboy in forum Installing on a Windows Server
    Replies: 6
    Last Post: 19 Jun 2006, 09:55 PM

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