etipon Posted August 19, 2005 Posted August 19, 2005 Everything seemed successful when I installed oscommerce (using Plesk) on my subdomain store.delphinoy.com and even asked for a folder on where to install on which i pointed it on a 'storefront' directory but I cannot access it from store.delphinoy.com but instead on store.delphinoy.com/storefront. How can i make it work on store.delphinoy.com? thanks for any help! Eric
♥Vger Posted August 19, 2005 Posted August 19, 2005 Where it asked for a folder you should have just left it blank - and then it would have installed it into the root of the subdomain. Vger
etipon Posted August 22, 2005 Author Posted August 22, 2005 Hi Vger, it's a field requirements (with asterisk *) when I installed it using Plesk. any more ideas? :(
satish Posted August 22, 2005 Posted August 22, 2005 Everything seemed successful when I installed oscommerce (using Plesk) on my subdomain store.delphinoy.com and even asked for a folder on where to install on which i pointed it on a 'storefront' directory but I cannot access it from store.delphinoy.com but instead on store.delphinoy.com/storefront. How can i make it work on store.delphinoy.com? thanks for any help! Eric <{POST_SNAPBACK}> Put an Index.php page on your rott that redirects to the store.delphinoy.com/storefront or the second way is to dump all the catlaog folder content directly into the root path. Satish Mantri Ask/Skype for Free osCommerce value addon/SEO suggestion tips for your site. Check My About US For who am I and what My company does.
etipon Posted August 22, 2005 Author Posted August 22, 2005 Put an Index.php page on your rott that redirects to the store.delphinoy.com/storefront or the second way is to dump all the catlaog folder content directly into the root path. Satish Mantri <{POST_SNAPBACK}> great! i dumped everything to the root path... and everything seems working except for the admin page. A warning message appeared "Forbidden You don't have permission to access /admin on this server. Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request." Is there a file/s that I need to change permission?
etipon Posted August 23, 2005 Author Posted August 23, 2005 great! i dumped everything to the root path... and everything seems working except for the admin page. A warning message appeared "Forbidden You don't have permission to access /admin on this server. Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request." Is there a file/s that I need to change permission? <{POST_SNAPBACK}> anyone care to help me :(
Guest Posted August 23, 2005 Posted August 23, 2005 post your configure.php files here without the database connection info, lets see what/where you have things pointing to
etipon Posted August 23, 2005 Author Posted August 23, 2005 post your configure.php files here without the database connection info, lets see what/where you have things pointing to <{POST_SNAPBACK}> here's my configure.php. i just put xxxxx on db connection info for obvious reason. <?php // Please, note that all changes in this file will be lost // after reconfiguring application by Plesk define('HTTP_SERVER', 'http://store.delphinoy.com'); define('HTTPS_SERVER', 'http://store.delphinoy.com'); define('ENABLE_SSL', 'false'); define('HTTP_COOKIE_DOMAIN', 'store.delphinoy.com'); define('HTTPS_COOKIE_DOMAIN', 'store.delphinoy.com'); define('HTTP_COOKIE_PATH', '/'); // define('DIR_WS_HTTP_CATALOG', '/storefront/'); // define('DIR_WS_HTTPS_CATALOG', '/storefront/'); define('DIR_WS_HTTP_CATALOG','/'); define('DIR_WS_HTTPS_CATALOG', '/'); 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', dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME'])); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); // define our database connection define('DB_SERVER', 'localhost'); define('DB_SERVER_USERNAME', 'xxxxxxx'); define('DB_SERVER_PASSWORD', 'xxxxxx'); define('DB_DATABASE', 'xxxxxxxx); define('USE_PCONNECT', 'false'); define('STORE_SESSIONS', ''); ?>
Guest Posted August 24, 2005 Posted August 24, 2005 Put an Index.php page on your rott that redirects to the store.delphinoy.com/storefront or the second way is to dump all the catlaog folder content directly into the root path. Satish Mantri <{POST_SNAPBACK}> OK, I am not the same person, but I seem to be in the same place. My store shows up as www.mystore.com/catalog when I only want it to show up as www.mystore.com. Seems to me that this root directory thing mgiht work, can you talk an idiot through it? Thanks....
♥Vger Posted August 24, 2005 Posted August 24, 2005 As you've set it not to use ssl you should leave the entries for https blank, so: define('HTTPS_SERVER', ''); define('HTTP_COOKIE_DOMAIN', 'store.delphinoy.com'); define('HTTPS_COOKIE_DOMAIN', ''); define('HTTP_COOKIE_PATH', '/'); define('HTTPS_COOKIE_PATH', ''); Other than that the configure.php file looks to be okay. However, it's not the configure.php file for admin! You'll find that in admin/includes/ Vger
etipon Posted August 24, 2005 Author Posted August 24, 2005 thanks Vger! here's the configure.php from delphinoy.com / subdomains / store / httpdocs / admin / includes / configure.php <?php // Please, note that all changes in this file will be lost // after reconfiguring application by Plesk define('HTTP_SERVER', 'http://store.delphinoy.com'); define('HTTP_CATALOG_SERVER', 'http://store.delphinoy.com'); define('HTTPS_CATALOG_SERVER', 'http://store.delphinoy.com'); define('ENABLE_SSL_CATALOG', 'false'); define('DIR_FS_DOCUMENT_ROOT', '/home/httpd/vhosts/delphinoy.com/subdomains/store/httpdocs'); // define('DIR_WS_ADMIN', '/storefront/admin/'); define('DIR_WS_ADMIN', 'admin/'); // define('DIR_FS_ADMIN', '/home/httpd/vhosts/delphinoy.com/subdomains/store/httpdocs/storefront/admin'); define('DIR_FS_ADMIN', '/home/httpd/vhosts/delphinoy.com/subdomains/store/httpdocs/admin'); // define('DIR_WS_CATALOG', '/storefront/'); define('DIR_WS_CATALOG', '/'); // define('DIR_FS_CATALOG', '/home/httpd/vhosts/delphinoy.com/subdomains/store/httpdocs/storefront/'); define('DIR_FS_CATALOG', '/home/httpd/vhosts/delphinoy.com/subdomains/store/httpdocs/'); 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/'); // define our database connection define('DB_SERVER', 'localhost'); define('DB_SERVER_USERNAME', 'xxxxxx'); define('DB_SERVER_PASSWORD', 'xxxxxx'); define('DB_DATABASE', 'xxxxxx'); define('USE_PCONNECT', 'false'); define('STORE_SESSIONS', ''); ?>
♥Vger Posted August 24, 2005 Posted August 24, 2005 define('HTTPS_CATALOG_SERVER', ''); define('DIR_WS_ADMIN', '/admin/'); Vger
etipon Posted August 25, 2005 Author Posted August 25, 2005 define('HTTPS_CATALOG_SERVER', ''); define('DIR_WS_ADMIN', '/admin/'); Vger <{POST_SNAPBACK}> tried it..still, didn't work :(
Guest Posted August 29, 2005 Posted August 29, 2005 rename your .htaccess file in your admin directory, see what happens there.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.