Results 1 to 10 of 13

Hybrid View

  1. #1
    Join Date
    Jul 2007
    Location
    Chicago & Arkansas I split time LOL
    Posts
    149
    Plugin Contributions
    0

    Default Re: fix_cache_key.php Can not get it to run?

    Well I thought I had that right. OK I fixed that and the datsbase error at the top went away LOL Thanks I thought I had done that. Now I got to figure out wht there is no stylesheet or catalog and it will be good

  2. #2
    Join Date
    Feb 2007
    Location
    Leicester UK
    Posts
    219
    Plugin Contributions
    0

    Default Re: fix_cache_key.php Can not get it to run?

    Your URL is redirecting to your IP address. Check your configure.php file and make sure the line that begins

    define('HTTP_SERVER',

    is set to your url, not your IP

  3. #3
    Join Date
    Jul 2007
    Location
    Chicago & Arkansas I split time LOL
    Posts
    149
    Plugin Contributions
    0

    Default Re: fix_cache_key.php Can not get it to run?

    Hummmm, Well I did that but it still show the IP? I have the URL's hosted at 1and1 and then they are http redirected from there to a new machine I bilt here on site. It is my first time playing with Linux. It is FedoraCore 6 and Apache as the server. We are going to have 3 or 4 stores hosted on here. So I was moving this one from the www/html/root directory into a /home/petestown/public_html directory. Thats when this all started. Because of the thought of multiple websites on this server and since I set up a Apache Virtual Domain Name Server I have lost the style on the page as well as the images from the catalog? I am really kind of lost here to say the least. Yes it has bothererd me that it is showing the IP but I am more concerned with the lose of stlesheet and images. I have done some reading and I am going to look at the htaccess file. But I am not sure what I am looking for LOL

    Rich

  4. #4
    Join Date
    Feb 2007
    Location
    Leicester UK
    Posts
    219
    Plugin Contributions
    0

    Default Re: fix_cache_key.php Can not get it to run?

    I have a feeling that if you fix the IP address problem, your display problems will sort themselves out. I had the same problem when I moved hosts but it's so long ago I can't remember exactly how I fixed it.

    Post your configure.php file, without your login and password details and I, or someone else, may be able to help you out.

  5. #5
    Join Date
    Jul 2007
    Location
    Chicago & Arkansas I split time LOL
    Posts
    149
    Plugin Contributions
    0

    Default Re: fix_cache_key.php Can not get it to run?

    OK Here it is and this one I asisned the www.petestown.com to the server area mind you I have like 20 URL's that have to find this site but I believe adding the allis in the virtual server for this site will get them there

    <?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.petestown.com');
    define('HTTPS_SERVER', 'https://www.petestown.com');

    // Use secure webserver for checkout procedure?
    define('ENABLE_SSL', '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_CATALOG', '/petestown/public_html/');
    define('DIR_WS_HTTPS_CATALOG', '/petestown/public_html/');

    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/petestown/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', 'xxxxxxx');
    define('DB_SERVER_PASSWORD', 'xxxxxxxx');
    define('DB_DATABASE', 'petesdb');
    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', 'file');
    define('DIR_FS_SQL_CACHE', '/home/petestown/public_html/cache');

    ?>

  6. #6
    Join Date
    Feb 2007
    Location
    Leicester UK
    Posts
    219
    Plugin Contributions
    0

    Default Re: fix_cache_key.php Can not get it to run?

    Quote Originally Posted by PetesTown View Post
    // 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', '/petestown/public_html/');
    define('DIR_WS_HTTPS_CATALOG', '/petestown/public_html/');

    ?>
    Heres where I think your problem lies.

    Change

    define('DIR_WS_CATALOG', '/petestown/public_html/');

    to this:

    define('DIR_WS_CATALOG', '/');

    And change

    define('DIR_WS_HTTPS_CATALOG', '/petestown/public_html/');

    to this:

    define('DIR_WS_HTTPS_CATALOG', '/');

    Let me know how you get on.

  7. #7
    Join Date
    Jul 2007
    Location
    Chicago & Arkansas I split time LOL
    Posts
    149
    Plugin Contributions
    0

    Default Re: fix_cache_key.php Can not get it to run?

    Nope I changed em and saved em and still the same result as you can see no color no style no catalog www.petestown.com

 

 

Similar Threads

  1. Can't get XAMP 1.7.3 to run on Windows 7 32 bit
    By petek in forum Installing on a Windows Server
    Replies: 4
    Last Post: 5 May 2010, 10:27 PM
  2. Can't Get Installer to Run on Localhost
    By Kennym in forum Installing on a Windows Server
    Replies: 2
    Last Post: 14 Mar 2010, 03:01 PM
  3. 1.3.8 new install - can't get my localhost to run it
    By Edm in forum Installing on a Windows Server
    Replies: 2
    Last Post: 10 May 2008, 10:20 AM
  4. Moved server fix_cache_key.php not working
    By supersnow in forum Installing on a Linux/Unix Server
    Replies: 5
    Last Post: 2 Jan 2008, 01:18 AM
  5. can't get installer to run
    By criscovisco in forum Installing on a Windows Server
    Replies: 6
    Last Post: 15 Nov 2007, 08:08 PM

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