Alias issue

Permalink
Hi, my boss recently set up alias and it messed up my side.
Our site is like this

root (zzzz.com)
- portal (Wordpress)
- products (Concrete5)

With alias setting,
zzzz.com/portal become zzzz.org
zzzz.com/products becomes products.zzzz.org

The problem is I cannot edit through products.zzzz.org. Even the login page look like the attached figure.
Top tool bar is gone. Dropdown menu of submenu bar doesn't work.

zzzz.com/products/* work perfectly. So I thought I keep working on this and just check with new alias. For example, I replaced a submenu by another menu. However, it doesn't reflect the change on products.zzzz.org.

I don't know this is just alias or link issue or need to deal with database as well.

I'm using Concrete5.6

Will someone please enlighten me as to what is happening?

Thank you

1 Attachment

 
agencecoteo replied on at Permalink Reply
agencecoteo
Did you modify /config/site.php ?
skgcoos replied on at Permalink Reply
No, I didn't.
I thought I could use 'base_url' but concrete5 was not installed on root folder.

current config/site.php
define('DB_SERVER', 'zzzz.com');
define('DB_USERNAME', 'user');
define('DB_PASSWORD', 'password');
define('DB_DATABASE', 'zzzzc5');
define('PASSWORD_SALT', 'fxdfeeafdfdfeafefeafdsssY74TmOpWoGhRUo4MEhcS');
define('PERMISSIONS_MODEL', 'advanced');


Is there something i should know?
agencecoteo replied on at Permalink Reply
agencecoteo
maybe try this

define('BASE_URL', 'http://products.zzzz.org');
skgcoos replied on at Permalink Reply
Thank you for your suggestion. I tried that, but it didn't work as I hoped.
Since products folder is located under root, all links go to 'http://products.zzzz.org/products'

and source file also spit out like this without defining base_url
<script type="text/javascript">
var CCM_DISPATCHER_FILENAME = '/index.php';
var CCM_CID = 1;
var CCM_EDIT_MODE = false;
var CCM_ARRANGE_MODE = false;
var CCM_IMAGE_PATH = "/updates/concrete5.6.0.2/concrete/images";
var CCM_TOOLS_PATH = "/index.php/tools/required";
var CCM_BASE_URL = "http://products.zzzz.org";
var CCM_REL = "";
</script>
ScottSandbakken replied on at Permalink Reply
ScottSandbakken
Check for JavaScript errors.
skgcoos replied on at Permalink Reply
ScottSandbakken replied on at Permalink Reply
ScottSandbakken
Likely something is breaking before the error that you are seeing. It looks like the main jQuery file is not being load. That will cause your issue. You will have to figure out why that isn't loading.