Zen Cart Logo
Forums / Installing on a Windows Server / help! cant get to admin

help! cant get to admin

Locked

Views: 2,620

Results 1 to 9 of 9
This thread is locked. New replies are disabled.
16 Jun 2006, 6:31 PM
#1
tex10 avatar

tex10

New Zenner

Join Date:
Jun 2006
Posts:
10
Plugin Contributions:
0

help! cant get to admin

i just installed and upgraded zencart. i am able to open the inex page. but i am NOT able to get to the admin page.

now. i think the problem may have arisen from where it was installed this time.

i installed it to a directory that another domain name is pointing to via .htaccess

could this be causing the problem?

if so, i dont know how to fix this.

if not, what else could be going on?

thank you all!

also, the error message i am getting when trying to load the admin page is:
The page isn't redirecting properly

16 Jun 2006, 6:41 PM
#2
dbltoe avatar

dbltoe

Totally Zenned

Join Date:
Jan 2004
Location:
N of San Antonio TX
Posts:
9,786
Plugin Contributions:
13

Re: help! cant get to admin

check and make sure your entries in admin/includes/configure.php and includes/configure.php are correct and point to the right file locations.

NOTE: you may need to change the admin to the directory you currently use as the admin directory.

16 Jun 2006, 6:56 PM
#3
theoracle avatar

theoracle

Suspended

Join Date:
Aug 2004
Posts:
3,180
Plugin Contributions:
1

Re: help! cant get to admin

now. i think the problem may have arisen from where it was installed this time.

i installed it to a directory that another domain name is pointing to via .htaccess

If it's the case, make sure to replace the original .htaccess, from the package you downloaded from this site, to your admin folder on your server (inside your root's admin folder).

Then, clear all temp files and cookies. Close your browser. Re-open your browser, (preferably Firefox), and see if the admin section works again.

If not, make a backup of your admin folder and simply re-upload the entire admin's folder (originally from the package you downloaded from this site) and try your admin section page again once, again, you cleared out your cookies and temp files.

16 Jun 2006, 7:09 PM
#4
tex10 avatar

tex10

New Zenner

Join Date:
Jun 2006
Posts:
10
Plugin Contributions:
0

Re: help! cant get to admin

thanks. let me try some of these suggestions.

regarding the .htaccess. i was referring to the htaccess of my site in general not the one in the ZC folder

16 Jun 2006, 7:25 PM
#5
tex10 avatar

tex10

New Zenner

Join Date:
Jun 2006
Posts:
10
Plugin Contributions:
0

Re: help! cant get to admin

ok so im a little confused.

this is how i am set up:

domain1.com is my main domain.

domain2.com is where i want to instlal ZC

all of the files for domain2.com are in a folder under htdocs (htdocs/domain2files/)

my main .htaccess file under the htdocs points the domain2.com to this folder.

now, i have installed ZC to https://www.domain2.com/photostore/
these files are ACTUALLY here as well - https://www.domain1.com/domain2files/photostore/

** i hope that makes sense :blush:

so, when trying to access the admin from either URL - (ie. https://www.domain2.com/photostore/admin) it doesnt work.


the includes/configure.php reads:

define('HTTP_SERVER', 'domain2.com');
define('HTTPS_SERVER', 'https://username.powweb.com');
define('HTTP_CATALOG_SERVER', 'domain2.com');
define('HTTPS_CATALOG_SERVER', 'https://username.powweb.com');

and

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


please let me know if you need other info --- i really appreciate your help. i hope the fix is as easy as editing the configure file!

be well

16 Jun 2006, 10:05 PM
#6
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
176

Re: help! cant get to admin

  1. When you say you can't get into admin, what are the exact symptoms and/or error messages?

  2. May I suggest a few changes:> define('HTTP_SERVER', '**http://**domain2.com');

define('HTTPS_SERVER', 'https://username.powweb.com');
define('HTTP_CATALOG_SERVER', '**http://**domain2.com');
define('HTTPS_CATALOG_SERVER', 'https://username.powweb.com');
and remove the double-slashes from these, like so:
define('DIR_WS_ADMIN', '/domain2files/photostore/admin/');
define('DIR_WS_CATALOG', '/domain2files/photostore/');
define('DIR_WS_HTTPS_ADMIN', '/domain2files/photostore/admin/');
define('DIR_WS_HTTPS_CATALOG', '/domain2files/photostore/');

  1. You didn't quote your DIR_FS_CATALOG setting.

  2. You have anonymized your information, which makes it very hard to suggest an exact solution.
    If your "store" area works fine, then perhaps comparing the configure.php from the /includes/ folder with your /admin/includes version might be a help....

16 Jun 2006, 11:27 PM
#7
tex10 avatar

tex10

New Zenner

Join Date:
Jun 2006
Posts:
10
Plugin Contributions:
0

Re: help! cant get to admin

what did you mean by this?

NOTE: you may need to change the admin to the directory you currently use as the admin directory.[/QUOTE]

16 Jun 2006, 11:36 PM
#8
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
176

Re: help! cant get to admin

Tex10:

what did you mean by this?

NOTE: you may need to change the admin to the directory you currently use as the admin directory.
I think dbltoe was suggesting that perhaps you might have renamed your admin folder, so was suggesting that his instructions might need altering to match the new name of your admin folder ... but if you haven't renamed it yet, there is no need to worry about that statement.

16 Jun 2006, 11:38 PM
#9
dbltoe avatar

dbltoe

Totally Zenned

Join Date:
Jan 2004
Location:
N of San Antonio TX
Posts:
9,786
Plugin Contributions:
13

Re: help! cant get to admin

You mentioned that you had moved files. Since it's recommended that users change the admin directory, I just wanted to make sure you were in the right spot.