Results 1 to 6 of 6
  1. #1
    Join Date
    Oct 2006
    Posts
    21
    Plugin Contributions
    0

    red flag Redirect to zc_install/links linked to wrong folder...oh boy.

    ok.....

    1. Site was working fine when located in mydomain.com/store earlier today.
    2. Moved it to mydomain.com
    3. Changed the includes/configure & admin/includes/configure files.
    4. After that I could only get into the admin area of the site.
    5. If I tried to type in mydomain.com it redirected me to zc_install/index.php which didn't work because it was reanamed.
    6. Read some threads.
    7. Someone suggested that I needed keep the /store file with ALL the contents(i had deleted it).
    8. Copied /files back over to /store.
    9. The site pulls up now only thing is any time I click on something it links to /store (if you hover over a link you can see its going to take you to a /store file)

    any suggestions?

    I'd really like to get rid of the whole /store side of things.

    link: http://www.strange-house.net

  2. #2
    Join Date
    Mar 2004
    Posts
    16,042
    Plugin Contributions
    5

    Default Re: Redirect to zc_install/links linked to wrong folder...oh boy.

    looks like you missed removing a /store somewhere
    Zen cart PCI compliant Hosting

  3. #3
    Join Date
    Oct 2006
    Posts
    21
    Plugin Contributions
    0

    Default Re: Redirect to zc_install/links linked to wrong folder...oh boy.

    That's what I was thinking but I can't find it.

    Thanks for the fast reply.

  4. #4
    Join Date
    Mar 2004
    Posts
    16,042
    Plugin Contributions
    5

    Default Re: Redirect to zc_install/links linked to wrong folder...oh boy.

    can you post your includes/configure.php here use xxxxx for user names and passwords
    Zen cart PCI compliant Hosting

  5. #5
    Join Date
    Oct 2006
    Posts
    21
    Plugin Contributions
    0

    Default Re: Redirect to zc_install/links linked to wrong folder...oh boy.

    ADMIN:

    define('HTTP_SERVER', 'http://www.strange-house.net');
    define('HTTPS_SERVER', 'https://www.strange-house.net');
    define('HTTP_CATALOG_SERVER', 'http://www.strange-house.net');
    define('HTTPS_CATALOG_SERVER', 'https://www.strange-house.net');

    define('ENABLE_SSL_CATALOG', 'true');
    define('ENABLE_SSL_ADMIN', 'true');

    define('DIR_WS_ADMIN', '/admin/');
    define('DIR_WS_CATALOG', '/');
    define('DIR_WS_HTTPS_ADMIN', '/admin/');
    define('DIR_WS_HTTPS_CATALOG', '/');

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

    define('DIR_FS_ADMIN', '/kunden/homepages/31/d100327970/htdocs/admin/');
    define('DIR_FS_CATALOG', '/kunden/homepages/31/d100327970/htdocs/');

    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('DB_TYPE', 'mysql');
    define('DB_PREFIX', '');
    define('DB_SERVER', 'db580.perfora.net');
    define('DB_SERVER_USERNAME', 'xxxxx');
    define('DB_SERVER_PASSWORD', 'xxxxx');
    define('DB_DATABASE', 'xxxxx');
    define('USE_PCONNECT', 'false'); // use persistent connections?
    define('STORE_SESSIONS', 'db');

    directory where your apache
    define('SQL_CACHE_METHOD', 'file');
    define('DIR_FS_SQL_CACHE', '/kunden/homepages/31/d100327970/htdocs/cache');

    INCLUDES:

    define('HTTP_SERVER', 'http://www.strange-house.net');
    define('HTTPS_SERVER', 'https://www.strange-house.net');

    define('ENABLE_SSL', 'true');

    define('DIR_WS_CATALOG', '/');
    define('DIR_WS_HTTPS_CATALOG', '/');

    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', '/');

    define('DIR_FS_CATALOG', '/kunden/homepages/31/d100327970/htdocs/');

    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('DB_TYPE', 'mysql');
    define('DB_PREFIX', '');
    define('DB_SERVER', 'db580.perfora.net');
    define('DB_SERVER_USERNAME', 'xxxxx');
    define('DB_SERVER_PASSWORD', 'xxxxx');
    define('DB_DATABASE', 'xxxxx');
    define('USE_PCONNECT', 'false'); // use persistent connections?
    define('STORE_SESSIONS', 'db');

    directory where your apache
    define('SQL_CACHE_METHOD', 'file');
    define('DIR_FS_SQL_CACHE', '/kunden/homepages/31/d100327970/htdocs/cache');

  6. #6
    Join Date
    Oct 2006
    Posts
    21
    Plugin Contributions
    0

    Default Re: Redirect to zc_install/links linked to wrong folder...oh boy.

    I ended up backing up my database, uploading zc_install again and followed the steps just enough to get it to overwrite the config files. That worked. My guess is something was stuck in the database reading the old /store location in the configure files.

    resolved.

 

 

Similar Threads

  1. v136 zc_install redirect loop
    By Harvengure in forum General Questions
    Replies: 9
    Last Post: 29 Jul 2015, 12:46 AM
  2. Folder redirect - installed into wrong folder
    By tenthmuse in forum General Questions
    Replies: 2
    Last Post: 31 May 2011, 11:48 PM
  3. zc_install redirect
    By MrGuyUK in forum Basic Configuration
    Replies: 1
    Last Post: 9 Feb 2007, 04:52 AM

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