Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 28
  1. #11
    Join Date
    Jun 2014
    Location
    Switzerland
    Posts
    11
    Plugin Contributions
    0

    Default Re: Transfer to new server

    Hello!

    Thanks for all!

    Here the configure.php files:

    Website don't work: include/configure.php


    PHP Code:
    <?php
    /**
     * @package Configuration Settings circa 1.3.8
     * @copyright Copyright 2003-2007 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.your_domain.com
      // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
      
    define('HTTP_SERVER''http://www.digiscrapbooking.ch');
      
    define('HTTPS_SERVER''https://www.digiscrapbooking.ch');

      
    // 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''/shop/');
      
    define('DIR_WS_HTTPS_CATALOG''/shop/');

      
    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/digiscr2/public_html/shop/');

      
    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''digiscr2_shop');
      
    define('DB_SERVER_PASSWORD''PASSWORD');
      
    define('DB_DATABASE''digiscr2_shop');
      
    define('USE_PCONNECT''false');
      
    define('STORE_SESSIONS''db');
      
    // for STORE_SESSIONS, 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/digiscr2/public_html/shop/cache');

    // EOF
    Website don't work: admin/include/configure.php



    PHP Code:
    <?php
    /**
     * @package Configuration Settings circa 1.3.8
     * @copyright Copyright 2003-2007 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://www.your_domain.com - 
      // HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com
      // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
      // HTTP_CATALOG_SERVER is your Main webserver: eg-http://www.your_domain.com
      // HTTPS_CATALOG_SERVER is your Secure webserver: eg-https://www.your_domain.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
       *
       * If you desire your *entire* admin to be SSL-protected, make sure you use a "https:" URL for all 4 of the following:
       */
      
    define('HTTP_SERVER''http://www.digiscrapbooking.ch');
      
    define('HTTPS_SERVER''https://www.digiscrapbooking.ch');
      
    define('HTTP_CATALOG_SERVER''http://www.digiscrapbooking.ch');
      
    define('HTTPS_CATALOG_SERVER''https://www.digiscrapbooking.ch');

      
    // Use secure webserver for catalog module and/or admin areas?
      
    define('ENABLE_SSL_CATALOG''false');
      
    define('ENABLE_SSL_ADMIN''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_ADMIN''/shop/sylvieadmin/');
      
    define('DIR_WS_CATALOG''/shop/');
      
    define('DIR_WS_HTTPS_ADMIN''/shop/sylvieadmin/');
      
    define('DIR_WS_HTTPS_CATALOG''/shop/');

      
    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/digiscr2/public_html/shop/sylvieadmin/');
      
    define('DIR_FS_CATALOG''/home/digiscr2/public_html/shop/');

      
    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''');
      
    define('DB_SERVER''localhost');
      
    define('DB_SERVER_USERNAME''digiscr2_shop');
      
    define('DB_SERVER_PASSWORD''tcthBOkhPz5C');
      
    define('DB_DATABASE''digiscr2_shop');
      
    define('USE_PCONNECT''false');
      
    define('STORE_SESSIONS''db');
      
    // for STORE_SESSIONS, 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/digiscr2/public_html/shop/cache');

    // EOF
    Website work, new install on subfolder: /include/configure.php


    PHP Code:
    <?php
    /**
     * @package Configuration Settings circa 1.5.0
     * @copyright Copyright 2003-2011 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * File Built by zc_install on 2014-06-17 07:47:25
     */


    /*************** 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.your_domain.com
      // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
      
    define('HTTP_SERVER''http://37.187.147.47');
      
    define('HTTPS_SERVER''https://37.187.147.47');

      
    // 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''/~digiscr2/shop2/');
      
    define('DIR_WS_HTTPS_CATALOG''/~digiscr2/shop2/');

      
    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/digiscr2/public_html/shop2/');

      
    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_CHARSET''utf8');
      
    define('DB_SERVER''localhost');
      
    define('DB_SERVER_USERNAME''digiscr2_shop2');
      
    define('DB_SERVER_PASSWORD''PASSWORD');
      
    define('DB_DATABASE''digiscr2_shop2');

      
    // 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/digiscr2/public_html/shop2/cache');

    // EOF
    Website work, new install on subfolder: admin/include/configure.php


    PHP Code:
    <?php
    /**
     * @package Configuration Settings circa 1.5.0
     * @copyright Copyright 2003-2011 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * File Built by zc_install on 2014-06-17 07:47:25
     */


    /*************** 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.      ***********/

    /**
     * WE RECOMMEND THAT YOU USE SSL PROTECTION FOR YOUR ENTIRE ADMIN:
     * To do that, make sure you use a "https:" URL for BOTH the HTTP_SERVER and HTTPS_SERVER entries:
     */
      
    define('HTTP_SERVER''http://37.187.147.47');
      
    define('HTTPS_SERVER''https://37.187.147.47');
      
    define('HTTP_CATALOG_SERVER''http://37.187.147.47');
      
    define('HTTPS_CATALOG_SERVER''https://37.187.147.47');

      
    // 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'])) . '/');
      
    define('DIR_WS_CATALOG''/~digiscr2/shop2/');
      
    define('DIR_WS_HTTPS_ADMIN'preg_replace('#^' str_replace('-''\-'$p2) . '#'''dirname($_SERVER['SCRIPT_NAME'])) . '/');
      
    define('DIR_WS_HTTPS_CATALOG''/~digiscr2/shop2/');

      
    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)
      
    define('DIR_FS_ADMIN'realpath(dirname(__FILE__) . '/../') . '/');
      
    //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/digiscr2/public_html/shop2/');

      
    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''');
      
    define('DB_CHARSET''utf8');
      
    define('DB_SERVER''localhost');
      
    define('DB_SERVER_USERNAME''digiscr2_shop2');
      
    define('DB_SERVER_PASSWORD''PASSWORD');
      
    define('DB_DATABASE''digiscr2_shop2');

      
    // 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/digiscr2/public_html/shop2/cache');


    // Define the webserver and path parameters
      // Main webserver: eg-http://www.your_domain.com - 
      // HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com
      // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
      // HTTP_CATALOG_SERVER is your Main webserver: eg-http://www.your_domain.com
      // HTTPS_CATALOG_SERVER is your Secure webserver: eg-https://www.your_domain.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
       */
    // EOF
    Thanks for your help!

  2. #12
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,379
    Plugin Contributions
    9

    Default Re: Transfer to new server

    Pls check your PM!

    Using the info in your configuration files I can access both of your sites without getting an error. The live site gives me the 'Down for Maintenance' page - no error. I am using the latest Firefox on a Linux installation.

    Considering I can access both sites it does not appear to be a server side error - could be wrong though...

    Can you take that site off maintenance and post here when you have done it? I will then check again from my end.

    I have about an hour to spare, say until 10.30 your time.

    Cheers / Frank

  3. #13
    Join Date
    Jun 2014
    Location
    Switzerland
    Posts
    11
    Plugin Contributions
    0

    Default Re: Transfer to new server

    Yes, but the site you access is on the old server (digiscrapbooking.ch)... It's work fine

    But if I test the site on the new server, it's dosn't work: http://37.187.147.47/~digiscr2/shop

    and the test install on subfolder: http://37.187.147.47/~digiscr2/shop2

  4. #14
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,379
    Plugin Contributions
    9

    Default Re: Transfer to new server

    Quote Originally Posted by gmonnet View Post
    Yes, but the site you access is on the old server (digiscrapbooking.ch)... It's work fine

    But if I test the site on the new server, it's dosn't work: http://37.187.147.47/~digiscr2/shop

    and the test install on subfolder: http://37.187.147.47/~digiscr2/shop2
    On the new server your configure files are pointing to

    PHP Code:
      define('HTTP_SERVER''http://www.digiscrapbooking.ch');
      
    define('HTTPS_SERVER''https://www.digiscrapbooking.ch'); 
    but you are trying to access http://37.187.147.47/~digiscr2/shop

    You need to make the configure files on the new server to point to http://37.187.147.47/~digiscr2/shop

    OR

    change the DNS entry at your registrar to point to the nameserver(s) of the new host and wait for the DNS entries to propagate through the internet.

  5. #15
    Join Date
    Jun 2014
    Location
    Switzerland
    Posts
    11
    Plugin Contributions
    0

    Default Re: Transfer to new server

    I hae make change for the 2 configure.php files but no change....

  6. #16
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,379
    Plugin Contributions
    9

    Default Re: Transfer to new server

    Quote Originally Posted by gmonnet View Post
    I hae make change for the 2 configure.php files but no change....
    In your old /includes/configure.php find

    PHP Code:
    // Define the webserver and path parameters
      // HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com
      // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
      
    define('HTTP_SERVER''http://www.digiscrapbooking.ch');
      
    define('HTTPS_SERVER''https://www.digiscrapbooking.ch'); 
    and change to

    PHP Code:
    // Define the webserver and path parameters
      // HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com
      // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
      
    define('HTTP_SERVER''http://37.187.147.47');
      
    define('HTTPS_SERVER''https://37.187.147.47'); 
    and in the same file

    PHP Code:
      define('DIR_FS_CATALOG''/home/digiscr2/public_html/shop/'); 

    should now read

    PHP Code:
      define('DIR_WS_CATALOG''/~digiscr2/shop/'); 
    If this works then make corresponding changes to your admin configure file.

  7. #17
    Join Date
    Jun 2014
    Location
    Switzerland
    Posts
    11
    Plugin Contributions
    0

    Default Re: Transfer to new server

    OHHHH Yeah!!

    Very big thanks!!

    But now I see the page for Zen-cart installation: http://37.187.147.47/~digiscr2/shop/

    There is an other problem on the configure.php?

  8. #18
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,379
    Plugin Contributions
    9

    Default Re: Transfer to new server

    Quote Originally Posted by gmonnet View Post
    OHHHH Yeah!!

    Very big thanks!!

    But now I see the page for Zen-cart installation: http://37.187.147.47/~digiscr2/shop/

    There is an other problem on the configure.php?
    I can see that too - not very familiar with French any more (forgot most of it since my school days some 45 years ago) you will now need to follow the instructions displayed on the screen.

    I won't be available for help in the next couple of hours though.....

  9. #19
    Join Date
    Jun 2014
    Location
    Switzerland
    Posts
    11
    Plugin Contributions
    0

    Default Re: Transfer to new server

    Thanks for your help!!

    Now I have this page on my website and admin: (http://www.digiscrapbooking.ch/shop)

    Thank you for using Zen Cart ™.

    You see this page for several reasons:

    This is the first time you use Zen Cart ™ and you have not yet started the installation procedure.
    If this really is the case for you, you need to download the directory "zc_install" using FTP software, then launch zc_install / index.php in your browser (or reload this page for the link to the installation).

    Your file / includes / configure.php and / or / admin / includes / configure.php contains configuration information invalid path and / or a misconfiguration of the database.
    If you recently edit your configure.php files, or perhaps moved your site to a different directory or server, then you need to review and update your configuration.
    Read the FAQ and online tutorials on the site Zen Cart ™ for assistance.
    Additional Information: includes / configure.php file contents invalid. ie: DIR_FS_CATALOG not valid or not set

    To start the installation ...

    Documentation for installation touve in the / docs folder of your distribution Zen Cart ™. You can also find documentation in English in the online FAQs or French on Zen Cart France .
    You need to download the directory "zc_install" using FTP software, then launch zc_install / index.php via your browser (or reload this page to see the direct link).
    The online FAQ and Tutorials on the site Zen Cart ™ will be a great help if you encounter difficulties.

  10. #20
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,478
    Plugin Contributions
    88

    Default Re: Transfer to new server

    From the message that you posted:
    Code:
    Your file / includes / configure.php and / or / admin / includes / configure.php contains configuration information invalid path and / or a misconfiguration of the database.
    If you recently edit your configure.php files, or perhaps moved your site to a different directory or server, then you need to review and update your configuration.
    Read the FAQ and online tutorials on the site Zen Cart ™ for assistance.
    Additional Information: includes / configure.php file contents invalid. ie: DIR_FS_CATALOG not valid or not set
    I've highlighted the "Additional information" section, which says that your DIR_FS_CATALOG value needs 'adjustment'.

 

 
Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. Admin half loading after site transfer to new server
    By dj_chillerz in forum General Questions
    Replies: 11
    Last Post: 5 Nov 2011, 03:11 PM
  2. Transfer installation to a new domain but same server
    By gyro123 in forum Installing on a Linux/Unix Server
    Replies: 5
    Last Post: 7 Nov 2010, 07:22 PM
  3. How do you transfer from a dev WAMP server to a LAMP server?
    By diannev in forum Installing on a Linux/Unix Server
    Replies: 4
    Last Post: 29 Feb 2008, 09:02 AM
  4. Error after a transfer to new server
    By patj in forum Installing on a Linux/Unix Server
    Replies: 1
    Last Post: 24 Mar 2007, 12:50 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