yannou Posted July 19, 2004 Posted July 19, 2004 I've installed oscommerce, and when finishing the install when I click on either Catalog or Admin Tools I get 'page can not be displayed' message. I've been told to edit the configure.php files to add catalog and admin folders path but it hasn't changed a thing, the problems remain. Here is the line that I've been told to modify and the value that should be there : define('DIR_WS_HTTP_CATALOG', '/store/install/catalog');
Guest Posted July 19, 2004 Posted July 19, 2004 did you install your store in a directory named store/install/catalog? who gave you that information? post your configure.php file here WITHOUT the database info, username and password.
yannou Posted July 19, 2004 Author Posted July 19, 2004 did you install your store in a directory named store/install/catalog?who gave you that information? post your configure.php file here WITHOUT the database info, username and password. Here is the configure.php file content that is in "/public_html/store/install/catalog/includes/" : <?php/* osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://www.yannsdeals.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://svr04.wwm.net'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.yannsdeals.com'); define('HTTPS_COOKIE_DOMAIN', '.yannsdeals.com'); define('HTTP_COOKIE_PATH', '/store/install/catalog/'); define('HTTPS_COOKIE_PATH', '/store/install/catalog/'); define('DIR_WS_HTTP_CATALOG', '/store/install/catalog/'); define('DIR_WS_HTTPS_CATALOG', '/~yannou/'); 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/yannou/public_html/store/install/catalog/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); And here is the configure.php file content that is in "/public_html/store/install/catalog/admin/includes/" : <?php/* osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://www.yannsdeals.com'); // eg, http://localhost - should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://www.yannsdeals.com'); define('HTTPS_CATALOG_SERVER', 'https://svr04.wwm.net'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/home/yannou/public_html/store/install/catalog/'); // where the pages are located on the server define('DIR_WS_ADMIN', '/store/admin/'); // absolute path required define('DIR_FS_ADMIN', '/home/yannou/public_html/store/install/catalog/admin/'); // absolute pate required define('DIR_WS_CATALOG', '/store/'); // absolute path required define('DIR_FS_CATALOG', '/home/yannou/public_html/store/install/catalog/'); // 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/');
241 Posted July 19, 2004 Posted July 19, 2004 define('DIR_FS_DOCUMENT_ROOT', '/home/yannou/public_html/store/install/catalog'); // where the pages are located on the server define('DIR_WS_ADMIN', '/store/install/catalog/admin/'); // absolute path required define('DIR_FS_ADMIN', '/home/yannou/public_html/store/install/catalog/admin/'); // absolute pate required define('DIR_WS_CATALOG', '/store/install/catalog/'); // absolute path required define('DIR_FS_CATALOG', '/home/yannou/public_html/store/install/catalog/'); // absolute path required No longer giving free advice. Please place deposit in meter slot provided. Individual: [=] SME: [==] Corporation: [===] If deposit does not fit one of the slots provided then you are asking too much! Is your Osc dated try Phoenix raising oscommerce from the ashes.
241 Posted July 19, 2004 Posted July 19, 2004 what is wrong with the one in shop or cart, cart works ok so why not copy the configure.php information from the cart copy of osc and make the changes to reflect the directory changes No longer giving free advice. Please place deposit in meter slot provided. Individual: [=] SME: [==] Corporation: [===] If deposit does not fit one of the slots provided then you are asking too much! Is your Osc dated try Phoenix raising oscommerce from the ashes.
yannou Posted July 19, 2004 Author Posted July 19, 2004 ?define('DIR_FS_DOCUMENT_ROOT', '/home/yannou/public_html/store/install/catalog'); // where the pages are located on the server ?define('DIR_WS_ADMIN', '/store/install/catalog/admin/'); // absolute path required ?define('DIR_FS_ADMIN', '/home/yannou/public_html/store/install/catalog/admin/'); // absolute pate required ?define('DIR_WS_CATALOG', '/store/install/catalog/'); // absolute path required ?define('DIR_FS_CATALOG', '/home/yannou/public_html/store/install/catalog/'); // absolute path required Still not working
241 Posted July 19, 2004 Posted July 19, 2004 follow my second suggestion regarding cart as it works. Try this link http://www.yannsdeals.com/store/install/catalog/ Try this link http://www.yannsdeals.com/store/install/catalog/admin/ No longer giving free advice. Please place deposit in meter slot provided. Individual: [=] SME: [==] Corporation: [===] If deposit does not fit one of the slots provided then you are asking too much! Is your Osc dated try Phoenix raising oscommerce from the ashes.
241 Posted July 19, 2004 Posted July 19, 2004 If you issue is that you wish to just type www.yannsdeals.com then either move files to root or place a redirect to the directory No longer giving free advice. Please place deposit in meter slot provided. Individual: [=] SME: [==] Corporation: [===] If deposit does not fit one of the slots provided then you are asking too much! Is your Osc dated try Phoenix raising oscommerce from the ashes.
yannou Posted July 19, 2004 Author Posted July 19, 2004 follow my second suggestion regarding cart as it works. Try this link http://www.yannsdeals.com/store/install/catalog/ Try this link http://www.yannsdeals.com/store/install/catalog/admin/ Those links works :) Now what I want to do is to have oscommerce accessible from : - http://www.yannsdeals.com/store/catalog/ - http://www.yannsdeals.com/store/catalog/admin/ And have people accessing the store from : http://www.yannsdeals.com/store/ I also want to add the spanish language for the store.
241 Posted July 19, 2004 Posted July 19, 2004 then move everything from the store/inslall/catalog/ directory down a level and change the configure.php files to reflect the changed paths The default install of osc comes with english german and spanish languages No longer giving free advice. Please place deposit in meter slot provided. Individual: [=] SME: [==] Corporation: [===] If deposit does not fit one of the slots provided then you are asking too much! Is your Osc dated try Phoenix raising oscommerce from the ashes.
yannou Posted July 19, 2004 Author Posted July 19, 2004 then move everything from the store/inslall/catalog/ directory down a level and change the configure.php files to reflect the changed paths The default install of osc comes with english german and spanish languages The installation that I have done in the store folder same from a download of oscommerce I did on oscommerce-france.com, their french language install is working inlike all the contributions available, but for some reason they didn't include the spanish language. That's why I need to install spanish (only for the catalog, I don't need it for the admin pannel). I also need to set a username and password for the admin pannel as the ones I've set when installing hasn't been applied, and to activate SSL to secure my OSCommerce.
241 Posted July 19, 2004 Posted July 19, 2004 which is it to be you are having people access the store through store however you wish access from store/catalog do you mean that you want the public side to be access at store and the admin side to be access from a different directory. you can get a language pack from the contributions area and a good read would be the knowledge base also the original docs info in my signature these plus searching the forum will answer almost any question No longer giving free advice. Please place deposit in meter slot provided. Individual: [=] SME: [==] Corporation: [===] If deposit does not fit one of the slots provided then you are asking too much! Is your Osc dated try Phoenix raising oscommerce from the ashes.
yannou Posted July 19, 2004 Author Posted July 19, 2004 which is it to be you are having people access the store through store however you wish access from store/catalog do you mean that you want the public side to be access at store and the admin side to be access from a different directory. you can get a language pack from the contributions area and a good read would be the knowledge base also the original docs info in my signature these plus searching the forum will answer almost any question I want people to be able to access my online store using the following url : http://www.yannsdeals.com/store I also want to secure my admin pannel because for some reason the usename and password I have set during install didn't work, the SSL activation didn't work even if the SSL server path is correct. For the spanish language pack, I hope I'll have better luck than with the french pack, I followed the Knowledge Base directions after my first oscommerce install and it didn't work, it seems that the language pack I've downloaded was either buggy or I've uploaded files to a wrong location. That's why I ended installing the Oscommerce version from oscommerce-france.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.