Forums / Installing on a Windows Server / Problem with Admin Area

Problem with Admin Area

Results 1 to 7 of 7
02 Feb 2011, 21:27
#1
aaronspromotions avatar

aaronspromotions

New Zenner

Join Date:
Feb 2011
Posts:
7
Plugin Contributions:
0

Problem with Admin Area

Hi

I am new to zencart but I have installed my store ok, but when I log in to the admin or stock room area of the site I have found a problem. When I click on tools or catalog or any of the menus I get the Page Not Found screen and I have noticed that the file path seems to have /HTPP_SERVER/stock_room/ in it twice?

What file do I need to change to resolve this issue?

Thanks

Ian
02 Feb 2011, 23:00
#2
vger avatar

vger

Past Contributor

Join Date:
Nov 2004
Posts:
3,189
Plugin Contributions:
0

Re: Problem with Admin Area

It's probably the case that the install did not fully write to your admin/includes/configure.php file, or else this was a manual install you did and did not provide the correct and full DIR_FS pathways.

Vger
03 Feb 2011, 09:36
#3
aaronspromotions avatar

aaronspromotions

New Zenner

Join Date:
Feb 2011
Posts:
7
Plugin Contributions:
0

Re: Problem with Admin Area

Vger:

It's probably the case that the install did not fully write to your admin/includes/configure.php file, or else this was a manual install you did and did not provide the correct and full DIR_FS pathways.

Vger


I have checked the DIR_FS pathways and they look ok? See below:

// * 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', '/hsphere/local/home/x123456/websitename.co.uk/');
define('DIR_FS_CATALOG', '/hsphere/local/home/x123456/websitename.co.uk/');

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/');
03 Feb 2011, 13:42
#4
vger avatar

vger

Past Contributor

Join Date:
Nov 2004
Posts:
3,189
Plugin Contributions:
0

Re: Problem with Admin Area

define('DIR_FS_ADMIN', '/hsphere/local/home/x123456/websitename.co.uk/');

should be:

define('DIR_FS_ADMIN', '/hsphere/local/home/x123456/websitename.co.uk/admin-folder-name/');

Vger
09 Feb 2011, 14:48
#5
aaronspromotions avatar

aaronspromotions

New Zenner

Join Date:
Feb 2011
Posts:
7
Plugin Contributions:
0

Re: Problem with Admin Area

Vger:

define('DIR_FS_ADMIN', '/hsphere/local/home/x123456/websitename.co.uk/');

should be:

define('DIR_FS_ADMIN', '/hsphere/local/home/x123456/websitename.co.uk/admin-folder-name/');

Vger


Thanks Vger but I have tried this and it makes no difference, the file path in the stock_room area has /HTTP_SERVER/stock_room/ in it????
09 Feb 2011, 14:55
#6
vger avatar

vger

Past Contributor

Join Date:
Nov 2004
Posts:
3,189
Plugin Contributions:
0

Re: Problem with Admin Area

The HTTP_SERVER address should contain your domain name e.g.
define('HTTP_SERVER', 'http://www.yourdomain.com');


Vger
10 Feb 2011, 09:22
#7
aaronspromotions avatar

aaronspromotions

New Zenner

Join Date:
Feb 2011
Posts:
7
Plugin Contributions:
0

Re: Problem with Admin Area

Vger:

The HTTP_SERVER address should contain your domain name e.g.
define('HTTP_SERVER', 'http://www.yourdomain.com');


Vger


Hi Vger

This is what is in my includes/stock_room/configure

define('HTTPS_SERVER', 'https://aaronspromotions.co.uk');
define('HTTPS_SERVER', 'https://aaronspromotions.co.uk');
define('HTTPS_CATALOG_SERVER', 'https://aaronspromotions.co.uk');
define('HTTPS_CATALOG_SERVER', 'https://aaronspromotions.co.uk');

Regards

Ian

Edit: Just removed the 'S' from one of each of those and it works! Thanks Vger!!!