Jump to content

Admin section has disapeared!


Guest

Recommended Posts

Hi there,

I have problems in CC3 with the admin section when I change my dns records.

The directory for my "store" in stored in gracieella/store

When I set my DNS to point to just /gracieella I can browse to www.gracieella.com/store and /store/admin fine.

Now I when I change my dns to point to to gracieella/store the /store page opens as expected but I get a 404 not found when trying to go to /store/admin

The url places you in the /store but almosts trys to add another extention of /store so there is the: /store/store/admin (which obviously does not exist.

Here is my global.inc - please help thanks

<?php

$glob['dbdatabase'] = 'xxxxxxxxn';

$glob['dbhost'] = 'localhost';

$glob['dbpassword'] = 'xxxxxx';

$glob['dbprefix'] = '';

$glob['dbusername'] = 'lxxxxxxxx';

$glob['installed'] = '1';

$glob['rootDir'] = '/home/leesecom/public_html/gracieella/store';

$glob['rootRel'] = '/store/';

$glob['storeURL'] = 'http://www.gracieella.com/store';

?>

Link to comment
Share on other sites

Just fixed this myself by changing this

$glob['rootDir'] = '/home/leesecom/public_html/gracieella/store';

$glob['rootRel'] = '/store/';

$glob['storeURL'] = 'http://www.gracieella.com/store';

to this

$glob['rootDir'] = '/home/leesecom/public_html/gracieella/store';

$glob['rootRel'] = '/';

$glob['storeURL'] = 'http://www.gracieella.com';

?>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...