Hey there,
First time I'm asking for help over OscMax, I've searched about this but couldn't find a similar topic about this. I've installed OscMax 2.0.4, with the French language addon as a default (and only) language, and still am working on it, but I do have an irritating problem with it.
I've tried to create a test account on the store, but every time I click on the "Continue" button, it leads me to the advanced search page. The search string strangely includes all of the details that were input in the Create Account page, something like :
advanced_search.php?search_in_description=1&action =process&firstname=FIRSTNAME&lastname=LASTNAME&ema il_address=WHATEVER@EMAIL.COM&street_address=NO&po stcode=12345&city=NO&country=223&telephone=NO&pass word=HAHAHAHA&confirmation=HAHAHAHA
Of course, account has not been created, nothing in the admin...
I've taken many looks in many files, which are actually the basic, unchanged original files (just worked over the template for the moment), so before I start banging my head on the walls, would anyone have a hint about this?
Here's the configure.php if that can help :
PHP Code:
<?php
/*
osCMax v2.0, Open Source E-Commerce Solutions
http://www.osCDox.com
Copyright 2006 osCMax2005 osCMax
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://kerozene.phpnet.org');
define('HTTPS_SERVER', 'http://kerozene.phpnet.org');
define('ENABLE_SSL', false);
define('HTTP_COOKIE_DOMAIN', 'kerozene.phpnet.org');
define('HTTPS_COOKIE_DOMAIN', 'kerozene.phpnet.org');
define('HTTP_COOKIE_PATH', '/2neuf/catalog/');
define('HTTPS_COOKIE_PATH', '/2neuf/catalog/');
define('DIR_WS_HTTP_CATALOG', '/2neuf/catalog/');
define('DIR_WS_HTTPS_CATALOG', '/2neuf/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', '/home/users3/k/krisg/www/2neuf/catalog/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
// define our database connection
define('DB_SERVER', 'damn no');
define('DB_SERVER_USERNAME', 'nope');
define('DB_SERVER_PASSWORD', 'nope');
define('DB_DATABASE', 'nope nope');
define('USE_PCONNECT', 'false');
define('STORE_SESSIONS', 'mysql');
?>
Bookmarks