Zen Cart Logo
Forums / Installing on a Linux/Unix Server / Redirect to zc_install/links linked to wrong folder...oh boy.

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

Locked

Views: 2,077

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
24 Jan 2007, 10:25 PM
#1
toonopoly avatar

toonopoly

New Zenner

Join Date:
Oct 2006
Posts:
21
Plugin Contributions:
0

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

24 Jan 2007, 10:28 PM
#2
merlinpa1969 avatar

merlinpa1969

Totally Zenned

Join Date:
Mar 2004
Posts:
13,031
Plugin Contributions:
4

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

looks like you missed removing a /store somewhere

24 Jan 2007, 10:29 PM
#3
toonopoly avatar

toonopoly

New Zenner

Join Date:
Oct 2006
Posts:
21
Plugin Contributions:
0

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.

24 Jan 2007, 10:31 PM
#4
merlinpa1969 avatar

merlinpa1969

Totally Zenned

Join Date:
Mar 2004
Posts:
13,031
Plugin Contributions:
4

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

24 Jan 2007, 10:40 PM
#5
toonopoly avatar

toonopoly

New Zenner

Join Date:
Oct 2006
Posts:
21
Plugin Contributions:
0

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

25 Jan 2007, 3:24 PM
#6
toonopoly avatar

toonopoly

New Zenner

Join Date:
Oct 2006
Posts:
21
Plugin Contributions:
0

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.