Results 1 to 8 of 8
  1. #1
    Join Date
    Sep 2006
    Posts
    94
    Plugin Contributions
    0

    Default Renaming ZenCart Directory broke my site!!!!

    Hi, I need to rename my zencart directory.
    I followed all of the instructions given at
    http://www.zen-cart.com/wiki/index.p...Change_Folders

    But now everything has gone CRAZY! Not sure what I did wrong.

    PLEASE HELP! I need to get this store online ASAP.

    Here is the link to the site:
    http://www.zulurose.com/store/

    It used to be at:
    http://www.zulurose.com/eCommerce/

    I changed the Sessions Directory, renamed the directory, updated my config files, and now the php is acting CRAYZ.

    Any help would be greatly appreciated.

  2. #2
    Join Date
    Jun 2003
    Posts
    33,720
    Plugin Contributions
    0

    Default Re: Renaming ZenCart Directory broke my site!!!!

    post your includes/configure.php minus your passwords.
    Last edited by Kim; 19 Oct 2006 at 04:02 PM.
    Please do not PM for support issues: a private solution doesn't benefit the community.

    Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.

  3. #3
    Join Date
    Sep 2006
    Posts
    94
    Plugin Contributions
    0

    Default Re: Renaming ZenCart Directory broke my site!!!!

    Quote Originally Posted by Kim View Post
    post your includes/configure.php minus your passwords.
    Ok here is my include/configue.php
    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
      // 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://zulurose.com');
      define('HTTPS_SERVER', 'https://zulurose.com');
    
      // 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', '/store/');
      define('DIR_WS_HTTPS_CATALOG', '/store/');
    
      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/content/z/u/l/zulurose/html/store/');
    
      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
    ************** SNIP *************
    
      // 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/content/z/u/l/zulurose/html/store/cache');
    
    ?>

  4. #4
    Join Date
    Jun 2003
    Posts
    33,720
    Plugin Contributions
    0

    Default Re: Renaming ZenCart Directory broke my site!!!!

    See if this thread helps. http://www.zen-cart.com/forum/showth..._templates.php

    BTW a search for a unique piece of the error code will ususally find a result.
    Please do not PM for support issues: a private solution doesn't benefit the community.

    Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.

  5. #5
    Join Date
    Sep 2006
    Posts
    94
    Plugin Contributions
    0

    Default Re: Renaming ZenCart Directory broke my site!!!!

    Quote Originally Posted by Kim View Post
    See if this thread helps. http://www.zen-cart.com/forum/showth..._templates.php

    BTW a search for a unique piece of the error code will ususally find a result.
    I didn't find that link particularly helpful.

    Were do I find my error logs?

    Also too, I am getting this error in the store/admin/
    Code:
    Warning: main(/home/content/z/u/l/zulurose/html/store/includes/languages/english/meta_tags.php): failed to open stream: No such file or directory in /home/content/z/u/l/zulurose/html/store/admin/includes/languages/english.php on line 50
    
    Warning: main(/home/content/z/u/l/zulurose/html/store/includes/languages/english/meta_tags.php): failed to open stream: No such file or directory in /home/content/z/u/l/zulurose/html/store/admin/includes/languages/english.php on line 50
    
    Fatal error: main(): Failed opening required '/home/content/z/u/l/zulurose/html/store/includes/languages/english/meta_tags.php' (include_path='.:/usr/local/lib/php') in /home/content/z/u/l/zulurose/html/store/admin/includes/languages/english.php on line 5

  6. #6
    Join Date
    Jun 2003
    Posts
    33,720
    Plugin Contributions
    0

    Default Re: Renaming ZenCart Directory broke my site!!!!

    The errors are telling you the program can't find those files. That usually means they are missing or corrupt. Try reuploading the language files from the errors.
    Please do not PM for support issues: a private solution doesn't benefit the community.

    Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.

  7. #7
    Join Date
    Sep 2006
    Posts
    94
    Plugin Contributions
    0

    Default Re: Renaming ZenCart Directory broke my site!!!!

    i am wondering if the file properties got changed during the renaming. I don't think the tutorial that is on the WIKI is very thurough.

    I followed the directions exactly and the whole site looks like I need to re-install it

    Wow... I hope I don't have to do that.
    I am trying to re-upload my old backup now... I hope that helps.

    -z

  8. #8
    Join Date
    Jan 2004
    Posts
    66,443
    Plugin Contributions
    279

    Default Re: Renaming ZenCart Directory broke my site!!!!

    The error messages clearly state that the required file cannot be located.
    So, either the file is not present in the path specified, or it has permissions set in a way that is blocking access.
    .

    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.

 

 

Similar Threads

  1. v151 Renaming Admin Directory
    By CarLile in forum Installing on a Linux/Unix Server
    Replies: 2
    Last Post: 15 Mar 2013, 01:59 PM
  2. Site Disable after Renaming admin Directory
    By jbiquez in forum Basic Configuration
    Replies: 1
    Last Post: 22 Mar 2011, 09:11 PM
  3. Renaming the zencart directory.
    By Jeffries Productions in forum Templates, Stylesheets, Page Layout
    Replies: 12
    Last Post: 24 Sep 2009, 11:25 AM
  4. Renaming directory
    By Decostyle in forum General Questions
    Replies: 7
    Last Post: 23 Apr 2008, 03:59 PM
  5. Renaming Zencart Directory Broke My Store (too)
    By Bahnstoermer in forum Basic Configuration
    Replies: 8
    Last Post: 22 Sep 2007, 09:40 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