This is a discussion on In admin, 2 operations kick me out to the login screen. within the osCMax v2 Installation issues forums, part of the osCMax v2.0 Forums category; In admin, 2 operations kick me out to the login screen. 1. Easy Populate - clicking the link to download ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| ||||
| ||||
| In admin, 2 operations kick me out to the login screen. 1. Easy Populate - clicking the link to download a file. 2. Catalog - In the Go To drop down box - clicking on a sub category. Apache version 1.3.37 (Unix) PHP version 5.1.6 MySQL version 5.0.45-community
__________________ HTH Neil www.12website.com "You can have everything in life that you want if you will just help enough other people get what they want." Zig Ziglar |
| Sponsored Links | ||
| ||
|
#2
| ||||
| ||||
| Clicking on a subcategory on the dropdown works ok over here. Apache/1.3.37 (Unix) PHP 5.1.6 (Zend: 2.1.0) MySQL 5.0.45-community No idea about easypopulate, never used it. |
|
#3
| ||||
| ||||
| Thanks Mind Twist... Maybe just maybe the issue is in my configure files. (Other installs on php4 work just fine.) Can u post the defines of your config files? - none of the DB stuff.
__________________ HTH Neil www.12website.com "You can have everything in life that you want if you will just help enough other people get what they want." Zig Ziglar |
|
#4
| ||||
| ||||
| Here's my admin/includes/configure.php , I would say it is pretty much default... Code: <?php
/*
osCMax v2.0, Open Source E-Commerce Solutions
http://www.osCDox.com
Copyright 2006 osCMax2005 osCMax, 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.twistedtienda.com'); // eg, http://localhost - should not be empty for productive servers
define('HTTP_CATALOG_SERVER', 'http://www.twistedtienda.com');
define('HTTPS_CATALOG_SERVER', '');
define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module
define('DIR_FS_DOCUMENT_ROOT', '/home/twistedt/public_html/'); // where the pages are located on the server
define('DIR_WS_ADMIN', '/admin/'); // absolute path required
define('DIR_FS_ADMIN', '/home/twistedt/public_html/admin/'); // absolute pate required
define('DIR_WS_CATALOG', '/'); // absolute path required
define('DIR_FS_CATALOG', '/home/twistedt/public_html/'); // absolute path required
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_FLAGS', DIR_WS_IMAGES . 'flags/');
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/');
//sets default image directories
define('DIR_FS_MANUFACTURERS_IMAGES', 'manufacterers/');
define('DIR_FS_CATEGORIES_IMAGES', 'categories/');
define('DIR_FS_PRODUCTS_IMAGES', '100x100/');
//
define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');
define('DIR_FCKEDITOR', DIR_FS_CATALOG . 'FCKeditor/');
define('DIR_WS_FCKEDITOR', DIR_WS_CATALOG . 'FCKeditor/');
// define our database connection
define('DB_SERVER', 'XXXXX'); // eg, localhost - should not be empty for productive servers
define('DB_SERVER_USERNAME', 'XXXXX');
define('DB_SERVER_PASSWORD', 'XXXXX');
define('DB_DATABASE', 'XXXXX');
define('USE_PCONNECT', 'false'); // use persisstent connections?
define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'
?>
|
|
#5
| ||||
| ||||
| Thanks Mind Twist, I see you are not using ssl & maybe I can test that way, however I can't see that making a difference? Can u please post your includes/configure.php - again no DB info. |
|
#6
| ||||
| ||||
| Nope, I am not using SSL. 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://www.twistedtienda.com'); // eg, http://localhost - should not be empty for productive servers
define('HTTPS_SERVER', ''); // eg, https://localhost - should not be empty for productive servers
define('ENABLE_SSL', false); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', 'www.twistedtienda.com');
define('HTTPS_COOKIE_DOMAIN', '');
define('HTTP_COOKIE_PATH', '/');
define('HTTPS_COOKIE_PATH', '');
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', '/home/twistedt/public_html/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
// define our database connection
define('DB_SERVER', 'XXXXX'); // eg, localhost - should not be empty for productive servers
define('DB_SERVER_USERNAME', 'XXXXX');
define('DB_SERVER_PASSWORD', 'XXXXX');
define('DB_DATABASE', 'XXXXX');
define('USE_PCONNECT', 'false'); // use persistent connections?
define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'
// BEGIN newdesk
define('DIR_WS_RSS', DIR_WS_INCLUDES . 'modules/newsdesk/rss/');
// END newsdesk
//USAGE - call the url /rss.php?box=categories or /rss.php?box=whats_new or /rss.php?box=newsdesk_latest.php
?>
|
|
#7
| ||||
| ||||
| Thanks again MindTwist. Not using https in /admin seems to have worked. Note: I used to force admin to use https. While that worked on previous versions of OSC MAX and/or php 4 & older mysql it does not work (for me) on my current server. Apache version 1.3.37 (Unix) PHP version 5.1.6 MySQL version 5.0.45-community |
| Sponsored Links | ||
| ||
| |
| Thread Tools | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Errors on Customers Screen in Admin after Install | Keilup | osCMax v1.7 Installation | 1 | 10-27-2004 10:31 AM |
| Well crap... admin login not allowing login-no errors | tauras911 | osCMax v1.7 Installation | 2 | 07-07-2004 12:12 AM |
| Problem in admin screen... | Anonymous | osCMax v1.7 Installation | 2 | 03-23-2004 08:30 PM |
| Easy Populate and Quick updates Looping to login screen | freeman | osCMax v1.7 Discussion | 3 | 10-24-2003 01:52 AM |
| In admin screen goes blank when update button clicked | Walter | osCommerce 2.2 Installation Help | 4 | 07-27-2003 08:35 PM |