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

osCmax v2.5 Beta 2 - Set up Issue

This is a discussion on osCmax v2.5 Beta 2 - Set up Issue within the osCmax v2 Installation issues forums, part of the osCmax v2.0 Forums category; Hi Everyone I am asked to post this thread here. I am using the v2.5 Beta2. After getting rid of ...

      
  1. #1
    New Member
    Join Date
    Jan 2011
    Posts
    7
    Rep Power
    0


    Default osCmax v2.5 Beta 2 - Set up Issue

    Hi Everyone

    I am asked to post this thread here. I am using the v2.5 Beta2. After getting rid of some problems here is what I have right now:

    I cannot login with the user I created. No errors. Cannot add to wishlist. Cannot add to cart. No errors shown just not working. I have been asked to post the configure.php contents here:

    Copyright 2010 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://localhost');
    define('HTTPS_SERVER', 'http://localhost');
    define('ENABLE_SSL', false);
    define('HTTP_COOKIE_DOMAIN', 'localhost');
    define('HTTPS_COOKIE_DOMAIN', 'localhost');
    define('HTTP_COOKIE_PATH', '/catalog/');
    define('HTTPS_COOKIE_PATH', '/catalog/');
    define('DIR_WS_HTTP_CATALOG', '/catalog/');
    define('DIR_WS_HTTPS_CATALOG', '/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', 'C:/wamp/www/catalog/');
    define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
    define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

    Currently I am testing the v2.5 Beta 2 in order to use it in prod in the upcoming 3 months.

  2. #2
    New Member
    Join Date
    Jan 2011
    Posts
    7
    Rep Power
    0


    Default Re: osCmax v2.5 Beta 2 - Set up Issue

    So any help with regards to why I cannot login, cannot add items to the cart, cannot add items to wish list?

  3. #3
    osCMax Developer

    michael_s's Avatar
    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    19,907
    Rep Power
    568


    Default Re: osCmax v2.5 Beta 2 - Set up Issue

    You have not provided some key info from your configure.php. The last 2 lines are about session storage and mysql connection type. You need to include that. Login problems are usually an issue with sessions.

    As I recall from another thread, you are using mysql 5.5.8. I suggest downgrading to mysql 5.1x as we have not tested osCmax on v5.5.
    Michael Sasek
    osCMax Developer


    osCmax Installation Service
    - Have our professionals install osCmax on your server - same day service!
    osCmax 2.5 User Manual - the must have beginners guide to osCmax v2.5

    Stay Up To Date with everything osCMax:
    Free osCmax Newsletters - Security notices, New Releases, osCMax News
    osCmax on Twitter - Up to the minute info as it happens. Know it first.

    osCmax Documentation

  4. #4
    New Member
    Join Date
    Jan 2011
    Posts
    7
    Rep Power
    0


    Default Re: osCmax v2.5 Beta 2 - Set up Issue

    Sorry for that. Here are the last two lines:

    define('USE_PCONNECT', 'false');
    define('STORE_SESSIONS', 'mysql');

    I followed the steps here http://wiki.oscdox.com/local_installation and I downloaded the WAMP version that is stated there. And it comes with those versions of Apache, My SQL 5.5.8 and PHP.

    So downgrading is the only solution?

  5. #5
    New Member
    Join Date
    Jan 2011
    Posts
    7
    Rep Power
    0


    Default Re: osCmax v2.5 Beta 2 - Set up Issue

    sorry for that:

    define('USE_PCONNECT', 'false');
    define('STORE_SESSIONS', 'mysql');

    should I still downgrade..WAMP 2.1 comes with those versions...

  6. #6
    Lurker
    Join Date
    Jan 2011
    Posts
    2
    Rep Power
    0


    Default Re: osCmax v2.5 Beta 2 - Set up Issue

    Hi,
    I have got the same issue and resolved it with the following modification. It is related with the cookies, and there is inconsistency for the cookie deifnitions in configure.php and php.ini.

    Original settings was;

    configure.php:
    define('HTTP_COOKIE_DOMAIN', 'localhost');

    php.ini:
    session.cookie_domain =

    I have removed the localhost in configure.php, so looks like;

    define('HTTP_COOKIE_DOMAIN', '');


    I hope it helps.

    Good luck.

  7. #7
    osCMax Development Team
    ridexbuilder's Avatar
    Join Date
    Jul 2008
    Location
    Haggisland
    Posts
    3,014
    Rep Power
    36


    Default Re: osCmax v2.5 Beta 2 - Set up Issue

    Quote Originally Posted by okt6y View Post
    php.ini:
    session.cookie_domain =
    Just means that it isn't defined by default.
    Hosting plans with installation, configuration, contributions, support and maintenance.

  8. #8
    osCMax Developer

    michael_s's Avatar
    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    19,907
    Rep Power
    568


    Default Re: osCmax v2.5 Beta 2 - Set up Issue

    How are you accessing your site? What url in your browser?

    The cookie domain must be set to the actual domain that you access the site by. If the url isn't http://localhost/ as its base, and you have the cookie domain set to 'localhost' it will fail to set the cookie properly.
    Michael Sasek
    osCMax Developer


    osCmax Installation Service
    - Have our professionals install osCmax on your server - same day service!
    osCmax 2.5 User Manual - the must have beginners guide to osCmax v2.5

    Stay Up To Date with everything osCMax:
    Free osCmax Newsletters - Security notices, New Releases, osCMax News
    osCmax on Twitter - Up to the minute info as it happens. Know it first.

    osCmax Documentation

  9. #9
    New Member
    Join Date
    Jan 2011
    Posts
    7
    Rep Power
    0


    Default Re: osCmax v2.5 Beta 2 - Set up Issue

    my URL was: http://localhost/catalog/index.php

    the changes worked fine...

    thanks a lot to all your help guys...I am getting to like the osCMax a lot...By the way the support is much better than IBM...))

    I will continue my detailed investigation on the features of the Beta version and keep buggin you with my questions...

    thanks a lot...

Similar Threads

  1. osCmax v2.5 Beta 2 Released - Discussion thread
    By michael_s in forum Announcement Discussions
    Replies: 25
    Last Post: 01-31-2011, 09:54 PM
  2. osCmax v2.5 Beta-1 Released
    By michael_s in forum Announcement Discussions
    Replies: 55
    Last Post: 12-20-2010, 01:50 PM
  3. Payment Modules in oscmax 2.5 beta
    By cujo in forum osCMax v2 Features Discussion
    Replies: 5
    Last Post: 12-04-2010, 06:53 PM
  4. OSCMax 2.5 Beta 1 (Contact Us)
    By Hostboard in forum osCmax v2 Installation issues
    Replies: 3
    Last Post: 12-04-2010, 03:39 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
  •