Page 1 of 2 12 LastLast
Results 1 to 10 of 14
  1. #1
    Join Date
    Dec 2007
    Location
    Toronto, ON
    Posts
    6
    Plugin Contributions
    0

    red flag problem with store on IP change

    My domain host has changed my IP address on my server and now my cart doesn't open. When someone goes to my site it redirects them to http://www.x.com/x/zc_install/index.php instead of running my shoping cart as usual (the x's were used to blank out my site for privacy purposes). Any help would be GREATLY APPRECIATED!
    Thank you all for your hard work!

  2. #2
    Join Date
    Mar 2008
    Location
    Cape Town & London (depends on the season)
    Posts
    2,975
    Plugin Contributions
    0

    Default Re: problem with zencart on IP change

    Firstly... WHY is the install folder still there?

    It should have been deleted after your installation.

    Next... I think this is one your host needs to answer as the problem (as you say) is with the host.

  3. #3
    Join Date
    Dec 2007
    Location
    Toronto, ON
    Posts
    6
    Plugin Contributions
    0

    Default Re: problem with zencart on IP change

    Quote Originally Posted by fairestcape View Post
    Firstly... WHY is the install folder still there?

    It should have been deleted after your installation.
    funny you should say that, I thought the same thing. However, when I check my file manager, the install directory does NOT exist. For some reason it keeps sending people there when they type the root directory. In addition, the same problem also happens when i try to access my site directly at the directory in which zencart was installed. I am losing my mind, I need my site active! I am losing customers by the hour!

    PLEASE HELP!

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

    Default Re: problem with zencart on IP change

    Definitely something your host should be fixing.
    .

    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.

  5. #5
    Join Date
    Dec 2007
    Location
    Toronto, ON
    Posts
    6
    Plugin Contributions
    0

    red flag Re: problem with store on IP change

    My host is saying that there is something in the zencart configuration files that needs to be updated. I am in big trouble. I need this site up and running again. I am going on 3 days downtime now.

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

    Default Re: problem with store on IP change

    Well ... if you're going to throw the blame on Zen Cart, post your /includes/configure.php file here, without the password.

    And ... why did the IP address get changed? What else can you explain about what's been changed on the server and why?
    .

    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.

  7. #7
    Join Date
    Dec 2007
    Location
    Toronto, ON
    Posts
    6
    Plugin Contributions
    0

    red flag Re: problem with store on IP change

    I am not blaming zencart, in fact zencart and its fourm has done nothing but good for me. RESPECT TO ALL!

    My host is telling me to change anything that would be in the configuration files from the old ip address to the new one. but it looks to me that everything in zencart is directory based. Maybe there is something i am overlooking????

    below is my configure.php:


    <?php
    /**
    * dist-configure.php
    *
    * @package initSystem
    * @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
    * @version $Id: dist-configure.php 3071 2006-02-27 23:09:54Z drbyte $
    * @private
    */
    // 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.torapp.com');
    define('HTTPS_SERVER', 'https://www.torapp.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', '/torappinternational/');
    define('DIR_WS_HTTPS_CATALOG', '/torappinternational/');

    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/httpd/vhosts/torapp.com/httpdocs/torappinternational/');

    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', ''); // prefix for database table names
    define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty
    define('DB_SERVER_USERNAME', 'XXXXXXXXXXX');
    define('DB_SERVER_PASSWORD', 'XXXXXXXXX');
    define('DB_DATABASE', 'torapp');
    define('USE_PCONNECT', 'false'); // use persistent connections?
    define('STORE_SESSIONS', 'db'); // leave empty '' for default handler or set to 'db' or optionally 'mysql' in some cases
    Last edited by Torapp; 25 Feb 2009 at 09:00 PM.

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

    Default Re: problem with store on IP change

    Why is going to torapp.com auto-redirecting to your torappinternational subfolder?
    .

    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.

  9. #9
    Join Date
    Dec 2007
    Location
    Toronto, ON
    Posts
    6
    Plugin Contributions
    0

    Default Re: problem with store on IP change

    that is where i installed zencart (torapp.com/torappinternational). I had a info page a year ago while i was working on the catalog then redirected it to the sub folder once i was ready to launch.

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

    Default Re: problem with store on IP change

    okay ... so ... why not pare it back ... remove the redirect first
    Then check to see what's happening in general apart from Zen Cart

    Then try accessing the Zen Cart folder.
    Then try to figure out why it's redirecting to zc_install .... it shouldn't do that unless your configure.php file content is bad.

    What version of Zen Cart do you have?
    .

    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.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v138a Urgent Problem with my store :(
    By joannem in forum General Questions
    Replies: 25
    Last Post: 17 Nov 2015, 01:03 AM
  2. v150 Problem with Store Status
    By BlueMoonDesign in forum General Questions
    Replies: 0
    Last Post: 29 Aug 2013, 06:26 PM
  3. 2 Problem with my store
    By shabizon in forum General Questions
    Replies: 9
    Last Post: 6 Nov 2010, 02:39 PM
  4. Problem with Store Manager.
    By philip56 in forum Customization from the Admin
    Replies: 6
    Last Post: 24 Jun 2008, 07:09 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