Woke up this morning and thought, lets help a friend who is starting a business. Now i need a little guidance in the right direction !!
Looked in de forums first to see what kind of shopping 'software' there is/was available and what kind of experience was around.
Started experimenting with osCommerce. I've read about the 'big security' issue with the admininistrator part, so i decided to install the admin directory int shopadmin.
It went all fine untill.
In the shopadmin tool i received the following:
Catalog
Error: Catalog images directory does not exist: /shop/catalog/images/
Tools
Error: Backup directory does not exist. Please set this in configure.php.
The backup directory exists
Everywhere www:www has rw rights
The shopadmin/admin/includes/configure.php
define('HTTP_SERVER', 'http://<ipaddress>'); // eg,
http://localhost - should not be empty for productive servers
define('HTTP_CATALOG_SERVER', 'http://<ipaddress>');
define('HTTPS_CATALOG_SERVER', 'https://<ipaddress>');
define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module
define('DIR_FS_DOCUMENT_ROOT', '/shop/catalog/'); // where the pages are located on the server
define('DIR_WS_ADMIN', '/shopadmin/admin/'); // absolute path required
define('DIR_FS_ADMIN', '/shopadmin/admin/'); // absolute pate required
define('DIR_WS_CATALOG', '/shop/catalog/'); // absolute path required
define('DIR_FS_CATALOG', '/shop/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/');