Page 2 of 2 FirstFirst 12
Results 11 to 15 of 15
  1. #11
    Join Date
    Jul 2007
    Posts
    63
    Plugin Contributions
    0

    Default Re: move zen cart to a different sub-domain

    I use Filezilla, and in my case, it id not change the permissions

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

    Default Re: move zen cart to a different sub-domain

    Quote Originally Posted by marinela View Post
    I use Filezilla, and in my case, it id not change the permissions
    ... and that's likely a limitation imposed by your hosting company, not by your choice of FTP program.
    .

    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. #13
    Join Date
    Jul 2007
    Posts
    63
    Plugin Contributions
    0

    Default Re: move zen cart to a different sub-domain

    ah really? I did not know that!
    thanks!

  4. #14
    Join Date
    Oct 2006
    Posts
    64
    Plugin Contributions
    0

    help question Re: move zen cart to a different sub-domain

    i am getting the following error running the fix_cache_key.php file

    Code:
    Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/hosting/public_html/zen/fix_cache_key.php:43) in /home/hosting/public_html/zen/includes/functions/sessions.php on line 108
    
    Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/hosting/public_html/zen/fix_cache_key.php:43) in /home/hosting/public_html/zen/includes/functions/sessions.php on line 108
    
    Warning: Cannot modify header information - headers already sent by (output started at /home/hosting/public_html/zen/fix_cache_key.php:43) in /home/hosting/public_html/zen/includes/init_includes/init_templates.php on line 78
    
    Warning: Cannot modify header information - headers already sent by (output started at /home/hosting/public_html/zen/fix_cache_key.php:43) in /home/hosting/public_html/zen/includes/functions/functions_general.php on line 44
    any thoughts?

  5. #15
    Join Date
    May 2013
    Location
    Canada
    Posts
    1
    Plugin Contributions
    0

    Default Re: move zen cart to a different sub-domain

    Hi,

    It does not work for me. Maybe i did something wrong. COuld anybody help me about this? I would be the most appreciated. I'm new in coding.

    My zencart installed in webroot and now i want to move it to subdomain.
    My subdomain is wholesale.allsocute.com

    After i changed in session in admin page to .../html/wholesale/cache

    Then i moved admin folder, images folder, cache folder and include folder to wholesale folder.

    Then i edited wholesale/admin/includes/configure.php as below:

    Code:
     define('HTTP_SERVER', 'http://wholesale.allsocute.com');  define('HTTPS_SERVER', 'https://wholesale.allsocute.com');
      define('HTTP_CATALOG_SERVER', 'http://wholesale.allsocute.com');
      define('HTTPS_CATALOG_SERVER', 'https://wholesale.allsocute.com');
    
    
      // secure webserver for admin?  Valid choices are 'true' or 'false' (including quotes).
      define('ENABLE_SSL_ADMIN', 'false');
    
    
      // secure webserver for storefront?  Valid choices are 'true' or 'false' (including quotes).
      define('ENABLE_SSL_CATALOG', '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)
      $t1 = parse_url(HTTP_SERVER);$p1 = $t1['path'];$t2 = parse_url(HTTPS_SERVER);$p2 = $t2['path'];
    
    
      define('DIR_WS_ADMIN', preg_replace('#^' . str_replace('-', '\-', $p1) . '#', '', dirname($_SERVER['SCRIPT_NAME'])) . '/wholesale/');
      define('DIR_WS_CATALOG', '/wholesale/');
      define('DIR_WS_HTTPS_ADMIN', preg_replace('#^' . str_replace('-', '\-', $p2) . '#', '', dirname($_SERVER['SCRIPT_NAME'])) . '/wholesale/');
      define('DIR_WS_HTTPS_CATALOG', '/wholesale/');
    
    
      define('DIR_WS_IMAGES', 'wholesale/images/');
      define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
      define('DIR_WS_CATALOG_IMAGES', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'wholesale/images/');
      define('DIR_WS_CATALOG_TEMPLATE', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'wholesale/includes/templates/');
      define('DIR_WS_INCLUDES', 'wholesale/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 . 'wholesale/includes/languages/');
    
    
    // * DIR_FS_* = Filesystem directories (local/physical)
      define('DIR_FS_ADMIN', realpath(dirname(__FILE__) . '/../') . '/wholesale/');
      //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/01/10960601/html/wholesale/');
    
    
      //the following path is a COMPLETE path to the /logs/ folder  eg: /var/www/vhost/accountname/public_html/store/logs ... and no trailing slash
      define('DIR_FS_LOGS', '/home/content/01/10960601/html/logs');
    
    
      define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'wholesale/includes/languages/');
      define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'wholesale/images/');
      define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'wholesale/includes/modules/');
      define('DIR_FS_CATALOG_TEMPLATES', DIR_FS_CATALOG . 'wholesale/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_CHARSET', 'latin1');
      define('DB_SERVER', 'all1312808261626.db.10960601.hostedresource.com');
      define('DB_SERVER_USERNAME', 'all1312808261626');
      define('DB_SERVER_PASSWORD', 'Ellihatde11!');
      define('DB_DATABASE', 'all1312808261626');
    
    
      // 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/01/10960601/html/wholesale/cache');
    and wholesale/includes/configure.php as below:

    Code:
      define('HTTP_SERVER', 'http://wholesale.allsocute.com');  
               define('HTTPS_SERVER', 'https://wholesale.allsocute.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', '/wholesale/');
      define('DIR_WS_HTTPS_CATALOG', '/wholesale/');
    
    
      define('DIR_WS_IMAGES', 'wholesale/images/');
      define('DIR_WS_INCLUDES', 'wholesale/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/01/10960601/html/wholesale/');
    
    
      //the following path is a COMPLETE path to the /logs/ folder  eg: /var/www/vhost/accountname/public_html/store/logs ... and no trailing slash
      define('DIR_FS_LOGS', '/home/content/01/10960601/html/logs');
    
    
      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', 'zen_');
      define('DB_CHARSET', 'latin1');
      define('DB_SERVER', 'all1312808261626.db.10960601.hostedresource.com');
      define('DB_SERVER_USERNAME', 'all1312808261626');
      define('DB_SERVER_PASSWORD', 'Ellihatde11!');
      define('DB_DATABASE', 'all1312808261626');
    
    
      // 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/01/10960601/html/wholesale/cache');
    But my website became like this

    Forbidden

    You don't have permission to access / on this server.
    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

    Apache Server at wholesale.allsocute.com Port 80

    I DON'T KNOW WHY . COULD YOU GUYS HELP ME ? THANKS A LOT.

 

 
Page 2 of 2 FirstFirst 12

Similar Threads

  1. v139h Remove sub-domain access from Addon Domain
    By spawnie69 in forum General Questions
    Replies: 5
    Last Post: 17 Apr 2012, 09:45 PM
  2. Password protected store: how to move new customer sign up to different page?
    By AdaLovelace in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 4 Apr 2011, 11:26 AM
  3. Replies: 1
    Last Post: 2 Jan 2011, 06:28 PM
  4. Replies: 3
    Last Post: 13 Dec 2010, 05:28 PM
  5. Help? Move shop to sub-domain
    By aly22 in forum Installing on a Linux/Unix Server
    Replies: 4
    Last Post: 22 Jul 2009, 04:45 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