j'ai bien activé le SSL sur mon hébergeur (hostexcellence), j'ai fait une requête SSL pour accéder a l'administration, j'ai éditer de fichier configure.php de la façon suivante :
Code
define('HTTP_SERVER', 'https//idact39.com'); // eg, http://localhost or - https://localhost should not be NULL for productive servers
define('HTTP_CATALOG_SERVER', '');
define('HTTPS_CATALOG_SERVER', '');
define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module
define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs)
define('DIR_WS_ADMIN', '/admin/');
define('HTTP_CATALOG_SERVER', '');
define('HTTPS_CATALOG_SERVER', '');
define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module
define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs)
define('DIR_WS_ADMIN', '/admin/');
et donc j'accède bien a mon administration avec un "https" mais le soucis vient que quand je veux passer d'une page a l'autre de mon administration je repasse en "http" et donc a chaque fois j'ai un message d'erreur qui s'affiche
que doit-je faire pour arranger cela???
