Zen Cart Logo
Forums / Basic Configuration / Admin main page not showing up

Admin main page not showing up

Locked

Views: 1,052

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
18 Jan 2009, 3:43 AM
#1
homeofgus avatar

homeofgus

New Zenner

Join Date:
Jan 2009
Posts:
2
Plugin Contributions:
0

Admin main page not showing up

We moved a site from one server to another. Once we moved the site, now when they go to /zen-cart/admin the index page doesn't even show up. All we get is a blank page with no warnings. Any ideas on how to fix? Thanks.

18 Jan 2009, 9:50 PM
#2
4thwave avatar

4thwave

Zen Follower

Join Date:
Sep 2007
Posts:
125
Plugin Contributions:
0

Re: Admin main page not showing up

Have you checked the config.php files to make sure that they are pointing to the correct file path?

Here are a couple of the areas that need to be correct in your admin/includes/config.php file. I also moved to a different server and the file path as well as the sql server info must change in your config files. As for your includes/config.php (keep them separate) the file paths in this must also change.

define('HTTP_SERVER', 'https://www.mystore.org');
define('HTTPS_SERVER', 'https://www.mystore.org');
define('HTTP_CATALOG_SERVER', 'https://www.mystore.org');
define('HTTPS_CATALOG_SERVER', 'https://www.mystore.org');

// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'true');

This is the path to your Zen cart files. Your web host can help with this.

// * 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/

Hope this helps.

20 Jan 2009, 4:12 AM
#3
homeofgus avatar

homeofgus

New Zenner

Join Date:
Jan 2009
Posts:
2
Plugin Contributions:
0

Re: Admin main page not showing up

Thanks for the response.

All those variables are set correctly. The main cart works fine, just not the admin. If I enable ENABLE_SSL_CATALOG, do I need to store the admin directory in the "HTTPSDOCS" folder on the server?