osCommerce and osCMax shopping cart software forums

Shopping Cart Software

osCommerce with teeth!

 
 

In admin, 2 operations kick me out to the login screen.

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 ...


Go Back   osCommerce and osCMax shopping cart software forums > osCMax v2.0 Forums > osCMax v2 Installation issues

Register FAQ Members List Calendar Mark Forums Read


Free community membership! Fast easy FREE membership
Reply

 

LinkBack Thread Tools
  #1  
Old 10-27-2007, 11:22 PM
neil's Avatar
Active Member
 
Join Date: Nov 2002
Posts: 245
Thanks: 9
Thanked 7 Times in 6 Posts
Rep Power: 6
neil is on a distinguished road
Default In admin, 2 operations kick me out to the login screen.

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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
Advertisement
  #2  
Old 10-28-2007, 04:03 AM
MindTwist's Avatar
Active Member
 
Join Date: Jun 2007
Location: Barcelona, Spain
Posts: 346
Thanks: 9
Thanked 27 Times in 26 Posts
Rep Power: 3
MindTwist has a spectacular aura aboutMindTwist has a spectacular aura about
Default Re: In admin, 2 operations kick me out to the login screen.

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.
__________________
MindTwist of Twisted Reality and Twisted Tienda
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 10-28-2007, 04:41 AM
neil's Avatar
Active Member
 
Join Date: Nov 2002
Posts: 245
Thanks: 9
Thanked 7 Times in 6 Posts
Rep Power: 6
neil is on a distinguished road
Default Re: In admin, 2 operations kick me out to the login screen.

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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4  
Old 10-28-2007, 05:09 AM
MindTwist's Avatar
Active Member
 
Join Date: Jun 2007
Location: Barcelona, Spain
Posts: 346
Thanks: 9
Thanked 27 Times in 26 Posts
Rep Power: 3
MindTwist has a spectacular aura aboutMindTwist has a spectacular aura about
Default Re: In admin, 2 operations kick me out to the login screen.

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'
?>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5  
Old 10-28-2007, 05:37 AM
neil's Avatar
Active Member
 
Join Date: Nov 2002
Posts: 245
Thanks: 9
Thanked 7 Times in 6 Posts
Rep Power: 6
neil is on a distinguished road
Default Re: In admin, 2 operations kick me out to the login screen.

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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6  
Old 10-28-2007, 11:41 AM
MindTwist's Avatar
Active Member
 
Join Date: Jun 2007
Location: Barcelona, Spain
Posts: 346
Thanks: 9
Thanked 27 Times in 26 Posts
Rep Power: 3
MindTwist has a spectacular aura aboutMindTwist has a spectacular aura about
Default Re: In admin, 2 operations kick me out to the login screen.

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
  
?>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7  
Old 10-28-2007, 02:16 PM
neil's Avatar
Active Member
 
Join Date: Nov 2002
Posts: 245
Thanks: 9
Thanked 7 Times in 6 Posts
Rep Power: 6
neil is on a distinguished road
Default Re: In admin, 2 operations kick me out to the login screen.

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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
Advertisement
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

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


All times are GMT -8. The time now is 11:43 AM.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO
http://www.oscmax.com/forums/
Copyright 2008 osCMax