ahwake Posted April 24, 2008 Posted April 24, 2008 I had a template installed that I purchased from template monster. The basket, login and paypal is not working. Template tuning.com do not know how to fix it. The regular oscommerce works, but when the template is installed it does not handle orders. Where can I find a professional who can help me fix this problem? My webhosting company is easycgi.com, running on a microsoft platform. healingvineyard.com/store
burt Posted April 24, 2008 Posted April 24, 2008 Now you know to your cost why you should not buy a template from template monster. However, the problem is likely not with the templkate, it's more likely to be your configuration file and SSL problems. Easiest way to solve: buy your own SSL certificate, then amend configure.php
♥Vger Posted April 24, 2008 Posted April 24, 2008 The problem does appear to be with the https_cookie_domain and https_cookie_path settings in your /store/includes/configure.php file. They should be: https_cookie_domain 'secure104.easycgi.com' and https_cookie_path '/healingvineyard/store/' Vger
ahwake Posted April 25, 2008 Author Posted April 25, 2008 Thanks to both of you. VGER, I tried what you told me and the basket system is now working, but the paypal is not activating. Below are both my configure files. Is there something I have wrong on these two? Thanks for your help again. store/includes/configure.php define('HTTP_SERVER', 'http://healingvineyard.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://secure104.easycgi.com/healingvineyard'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'healingvineyard.com'); define('HTTPS_COOKIE_DOMAIN', 'secure104.easycgi.com'); define('HTTP_COOKIE_PATH', '/store/'); define('HTTPS_COOKIE_PATH', '/healingvineyard/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', 'c:/websites/lloydgrubb449/healingvineyard.com/store/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); and store/admin/includes/configure.php define('HTTP_SERVER', 'https://secure104.easycgi.com/healingvineyard'); // eg, http://localhost - should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://healingvineyard.com'); define('HTTPS_CATALOG_SERVER', 'https://secure104.easycgi.com/healingvineyard'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', 'c:/websites/lloydgrubb449/healingvineyard.com/store/'); // where the pages are located on the server define('DIR_WS_ADMIN', '/store/hv_admin223/'); // absolute path required define('DIR_FS_ADMIN', 'c:/websites/lloydgrubb449/healingvineyard.com/store/hv_admin223/'); // absolute pate required define('DIR_WS_CATALOG', '/store/'); // absolute path required define('DIR_FS_CATALOG', 'c:/websites/lloydgrubb449/healingvineyard.com/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/');
ahwake Posted April 28, 2008 Author Posted April 28, 2008 Is there anyone that can throw me a life line? Is there something wrong with my configurartion that is causing my paypal email not to activate? Thanks
FIMBLE Posted April 28, 2008 Posted April 28, 2008 Your define('DIR_FS_DOCUMENT_ROOT', 'c:/websites/lloydgrubb449/healingvineyard.com/store/'); // where the pages are located on the server define('DIR_FS_ADMIN', 'c:/websites/lloydgrubb449/healingvineyard.com/store/hv_admin223/'); // absolute pate required define('DIR_FS_CATALOG', 'c:/websites/lloydgrubb449/healingvineyard.com/store/'); // absolute path required Are certainly wrong, unless you are running from your desktop that is. Absolute path is on linux /home/your_website_username/public_html/folder_your_catalog_is_in Your web site username is the one you use to login to your web site control panel (not your Admin username) if your store is root then there is nothing after public_html. If your user name was healing and your store was in the standard catalog folder it would look like this /home/healing/public_html/catalog You get the idea. I have no idea about Windows a i do not use it. Sometimes you're the dog and sometimes the lamp post [/url] My Contributions
Recommended Posts
Archived
This topic is now archived and is closed to further replies.