Zen Cart Logo
Forums / Installing on a Linux/Unix Server / Admin values not updating

Admin values not updating

Locked

Views: 1,690

Results 1 to 7 of 7
This thread is locked. New replies are disabled.
24 Jul 2008, 9:25 PM
#1
bananabill avatar

bananabill

New Zenner

Join Date:
Jul 2008
Posts:
3
Plugin Contributions:
0

Admin values not updating

I'm new to zen cart. I just installed it to day. I've spent most of the day working on redirecting http to https. Now, when I try to update in value through admin, it just leaves the value blank.

This is what I've done so far:

  1. used a .htaccess redirector
  2. changed the false to true in includes/config.php and admin/includes/config.php.

Site: https://www.72hourgear.com

Any help would be greatly appreciated.

25 Jul 2008, 10:27 AM
#2
canopy avatar

canopy

Totally Zenned

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

Re: Admin values not updating

Although what I suggest may not solve your problem immediately, it seems like you haven't updated your configure.php files to reflect the change from non-www to www.

Try the following changes to your configure.php files first:

/includes/configure.php

define('HTTP_SERVER', 'http://www.72hourgear.com');
define('HTTPS_SERVER', 'https://www.72hourgear.com');
```**/admin/includes/configure.php**
```php
define('HTTP_SERVER', 'http://www.72hourgear.com');
define('HTTPS_SERVER', 'https://www.72hourgear.com');
define('HTTP_CATALOG_SERVER', 'http://www.72hourgear.com');
define('HTTPS_CATALOG_SERVER', 'https://www.72hourgear.com');
25 Jul 2008, 11:48 AM
#3
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: Admin values not updating

Your whole site seems to be under https now.

Generally, only the login/create account page and the checkout pages are secured, and Zencart does this automatically if your SSL cert is installed and the two configure.php files are edited correctly.

25 Jul 2008, 3:05 PM
#4
bananabill avatar

bananabill

New Zenner

Join Date:
Jul 2008
Posts:
3
Plugin Contributions:
0

Re: Admin values not updating

ok, so if the config files are updated, then I don't need a redirecter .htaccess?

25 Jul 2008, 3:20 PM
#5
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: Admin values not updating

That should be the case, unless your host does some offbeat things.

I'd try it without the redirect after you edit the config files. Should work.

26 Jul 2008, 2:26 PM
#6
bananabill avatar

bananabill

New Zenner

Join Date:
Jul 2008
Posts:
3
Plugin Contributions:
0

Re: Admin values not updating

do I want to change the false to true in this statement?
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'false);

on both config files?