osCmax v2.5 User Manual
Results 1 to 7 of 7

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

      
  1. #1
    Active Member neil's Avatar
    Join Date
    Nov 2002
    Posts
    248
    Rep Power
    10


    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

  2. #2
    Active Member MindTwist's Avatar
    Join Date
    Jun 2007
    Location
    Barcelona, Spain
    Posts
    409
    Rep Power
    7


    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.

  3. #3
    Active Member neil's Avatar
    Join Date
    Nov 2002
    Posts
    248
    Rep Power
    10


    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

  4. #4
    Active Member MindTwist's Avatar
    Join Date
    Jun 2007
    Location
    Barcelona, Spain
    Posts
    409
    Rep Power
    7


    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'
    ?>

  5. #5
    Active Member neil's Avatar
    Join Date
    Nov 2002
    Posts
    248
    Rep Power
    10


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

  6. #6
    Active Member MindTwist's Avatar
    Join Date
    Jun 2007
    Location
    Barcelona, Spain
    Posts
    409
    Rep Power
    7


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

  7. #7
    Active Member neil's Avatar
    Join Date
    Nov 2002
    Posts
    248
    Rep Power
    10


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

Similar Threads

  1. Errors on Customers Screen in Admin after Install
    By Keilup in forum osCMax v1.7 Installation
    Replies: 1
    Last Post: 10-27-2004, 09:31 AM
  2. Well crap... admin login not allowing login-no errors
    By tauras911 in forum osCMax v1.7 Installation
    Replies: 2
    Last Post: 07-06-2004, 11:12 PM
  3. Problem in admin screen...
    By Anonymous in forum osCMax v1.7 Installation
    Replies: 2
    Last Post: 03-23-2004, 07:30 PM
  4. Easy Populate and Quick updates Looping to login screen
    By freeman in forum osCmax v1.7 Discussion
    Replies: 3
    Last Post: 10-24-2003, 12:52 AM
  5. In admin screen goes blank when update button clicked
    By Walter in forum osCommerce 2.2 Installation Help
    Replies: 4
    Last Post: 07-27-2003, 07:35 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •