Results 1 to 3 of 3
  1. #1
    Join Date
    Apr 2008
    Posts
    178
    Plugin Contributions
    0

    red flag Customer Login Not Found

    I’m in need of some desperate help, we have moved our site to a dedicated server but since the move our customer login page is displaying this message

    Not Found
    The requested URL /scrapbookingmad.com/index.php was not found on this server.
    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
    ################################################################################
    Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.8b mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.2.5 Server at www.scrapbookingmad.com Port 80

    When I tried the login my self it’s going to this address

    http://www.scrapbookingmad.com/scrap...ain_page=login

    Instead of going here

    http://www.scrapbookingmad.com/index...ain_page=login

    I can’t find where to put this right,

    Just to confirm I can still login to my admin panel,

    I have changed all my passwords but I don’t think I have changed my database passwords, plus I’m still able to login to my admin panel so I don’t think it’s anything to do with that.

    I’ve been looking in

    Includes/configure.php

    Here what I have,


    <?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 "admin" version of configure.php. ***********/
    /*************** The 2 files should be kept separate and not used to overwrite each other. ***********/

    // 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.scrapbookingmad.com');
    define('HTTPS_SERVER', 'https://web161.secure-secure.co.uk');

    // 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', '/');
    define('DIR_WS_HTTPS_CATALOG', '/scrapbookingmad.com/');

    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', '/home/sammy/public_html/');

    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', 'localhost');
    define('DB_SERVER_USERNAME', 'sammy_zencart');
    define('DB_SERVER_PASSWORD', 'xxxxxxxxxxxxxxx');
    define('DB_DATABASE', 'sammy_zencart');
    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', '/home/sammy/public_html/cache');

    ?>

  2. #2
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Customer Login Not Found

    Quote Originally Posted by snarfy View Post
    define('HTTP_SERVER', 'http://www.scrapbookingmad.com');
    define('HTTPS_SERVER', 'https://web161.secure-secure.co.uk');

    define('DIR_WS_CATALOG', '/');
    define('DIR_WS_HTTPS_CATALOG', '/scrapbookingmad.com/');
    That's not likely the correct setup for SSL pages.
    Try changing those to these:
    [font="courier"] define('HTTP_SERVER', 'http://www.scrapbookingmad.com');
    define('HTTPS_SERVER', 'https://web161.secure-secure.co.uk/scrapbookingmad.com');

    define('DIR_WS_CATALOG', '/');
    define('DIR_WS_HTTPS_CATALOG', '/');[/font]
    .

    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.

  3. #3
    Join Date
    Apr 2008
    Posts
    178
    Plugin Contributions
    0

    Default Re: Customer Login Not Found

    Many thanks DrByte,

    Changing the following did the trick,

    define('DIR_WS_CATALOG', '/');
    define('DIR_WS_HTTPS_CATALOG', '/');

 

 

Similar Threads

  1. Replies: 18
    Last Post: 16 Oct 2014, 08:55 PM
  2. v151 Login 404 not found
    By avansant in forum General Questions
    Replies: 0
    Last Post: 8 Apr 2014, 06:10 PM
  3. admin login not found
    By orangehand in forum Installing on a Linux/Unix Server
    Replies: 1
    Last Post: 25 Jun 2010, 01:23 PM
  4. Customer not showing up on customer list, but can be found on database
    By roystik in forum Managing Customers and Orders
    Replies: 5
    Last Post: 24 Mar 2010, 09:42 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