EuroTech Posted June 16, 2005 Posted June 16, 2005 I'm trying to setup my shared SSL. When I change and save both of the configure.php files they go back to the orginal. It's not saving at all. I cant get this this setup for nothing. Any ideas? secure site = https://centos.securenet-server.net/~cpa0912/ store/includes/configure.php // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://eurotechsolution.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://eurotechsolution.com'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', false); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'eurotechsolution.com'); define('HTTPS_COOKIE_DOMAIN', 'eurotechsolution.com'); define('HTTP_COOKIE_PATH', '/store/'); define('HTTPS_COOKIE_PATH', '/store/'); define('DIR_WS_HTTP_CATALOG', '/store/'); define('DIR_WS_HTTPS_CATALOG', '/store/'); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', '/home/cpa0912/public_html/store/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); /store/admin/includes/configure.php define('HTTP_SERVER', 'http://eurotechsolution.com'); // eg, http://localhost - should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://eurotechsolution.com'); define('HTTPS_CATALOG_SERVER', 'https://eurotechsolution.com'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/home/cpa0912/public_html/store/'); // where the pages are located on the server define('DIR_WS_ADMIN', '/store/admin/'); // absolute path required define('DIR_FS_ADMIN', '/home/cpa0912/public_html/store/admin/'); // absolute pate required define('DIR_WS_CATALOG', '/store/'); // absolute path required define('DIR_FS_CATALOG', '/home/cpa0912/public_html/store/'); // absolute path required define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/'); define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/'); define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');
crash3903 Posted June 16, 2005 Posted June 16, 2005 define('HTTPS_SERVER', 'https://eurotechsolution.com'); should be this define('HTTPS_SERVER', 'https://centos.securenet-server.net/~cpa0912'); Regards Mark A Reynolds
EuroTech Posted June 16, 2005 Author Posted June 16, 2005 define('HTTPS_SERVER', 'https://eurotechsolution.com'); should be this define('HTTPS_SERVER', 'https://centos.securenet-server.net/~cpa0912'); <{POST_SNAPBACK}> I do that change, but if I go look at the file again after saving it's back to the orginal. and if I view the https://www.eurotechsolution.com it gives me an error.
♥Vger Posted June 16, 2005 Posted June 16, 2005 You have to change the file permissions on the two configure.php files, download and edit them, then upload again, and reset the file permissions. It sounds like you are editing the file while its permissions do not allow it to be overwritten. Look below my name for the "Psst?? Got a parse error??" link for the correct way to edit files. Vger
Recommended Posts
Archived
This topic is now archived and is closed to further replies.