on a definbe website, i need a more secure environement.
so, to be secure, i've decide to make a subdomain admin like "
http://admin.thedomain.com/ that would be the admin
since i'm on a linux server, it was easy
I've renamed the admin folder like "admin_FgR4I8G" (random name to be unfoundable)
created the sub domain (admin.thedomain.com) and create a "symlink" (symbolic link).
and create the config.php like that :
define('DB_TYPE', 'mysql');
define('DB_HOST', 'localhost');
define('DB_USERNAME', 'testadmin');
define('DB_PASSWORD', 'YuwaxbUS');
define('DB_NAME', 'testadmin');
define('TABLE_PREFIX', '');
define('WB_PATH', dirname(__FILE__));
define('WB_URL', 'http://www.thedomain.com');
define('ADMIN_PATH', WB_PATH.'/admin_FgR4I8G');
define('ADMIN_URL', 'http://admin.thedomain.com');
require_once(WB_PATH.'/framework/initialize.php');
the admin work #1, creating pages, working with all setups etc.
BUT everytime I hit "save" in any module so far, it link back to the admin home page and nothing is saved...
how can we secure the admin ?
the purpose was to make the admin in a ssl environement.