Hi everybody,
I'm a new user of oscommerce and i've discoved this amazing contribution "Supplier Admin Area"
I 've installed this in my test store and have some little problems.
I'm using
• STS (simple template system), installed ok !
• RMA_Returns_2-6, installed ok !
• Send HTML Email V2_1, installed ok !
and the last one, supplier admin area.
When I type :
http://www.ibanson.com/boutique/supplier/supplier_area.php
I see the login box and have above
Warning: main(includes/functions/refund_functions.php) [function.main]: failed to open stream: No such file or directory in /homepages/40/d232138210/htdocs/boutique/admin/includes/functions/general.php on line 1307
Warning: main() [function.include]: Failed opening 'includes/functions/refund_functions.php' for inclusion (include_path='.:/usr/lib/php') in /homepages/40/d232138210/htdocs/boutique/admin/includes/functions/general.php on line 1307
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /homepages/40/d232138210/htdocs/boutique/admin/includes/functions/general.php:1307) in /homepages/40/d232138210/htdocs/boutique/admin/includes/functions/sessions.php on line 97
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /homepages/40/d232138210/htdocs/boutique/admin/includes/functions/general.php:1307) in /homepages/40/d232138210/htdocs/boutique/admin/includes/functions/sessions.php on line 97
When I type :
http://www.ibanson.com/boutique/supplier_area.php
i got the loginbox without errors but no possibilities to log in and resend me a blank page ??
here is my configuration.php code :
<?php
/*
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 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.ibanson.com/boutique/'); // eg, http://localhost - should not be empty for productive servers
define('HTTP_CATALOG_SERVER', 'http://www.ibanson.com/boutique/');
define('HTTPS_CATALOG_SERVER', '');
define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module
define('DIR_FS_DOCUMENT_ROOT', '/homepages/40/d232138210/htdocs/boutique/'); // where the pages are located on the server
define('DIR_WS_ADMIN', 'supplier/'); // absolute path required
define('DIR_FS_ADMIN', '/homepages/40/d232138210/htdocs/boutique/supplier/'); // absolute pate required
define('DIR_WS_CATALOG', 'catalog/'); // absolute path required
define('DIR_FS_CATALOG', '/homepages/40/d232138210/htdocs/boutique/supplier/'); // 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/'); old line
define('DIR_WS_CATALOG_IMAGES', '../images/');
define('DIR_WS_INCLUDES', '../admin/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', 'dbxxxx.perfora.net'); // eg, localhost - should not be empty for productive servers
define('DB_SERVER_USERNAME', 'dbo2770xxxxx');
define('DB_SERVER_PASSWORD', 'Mhxxxx5');
define('DB_DATABASE', 'db277xxxxxx');
define('USE_PCONNECT', 'false'); // use persisstent connections?
define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'
?>
Could you help me please ?