Page 1 of 7 123 ... LastLast
Results 1 to 10 of 70

2.0.15 install problem

This is a discussion on 2.0.15 install problem within the osCmax v2 Installation issues forums, part of the osCmax v2.0 Forums category; hi on step 4 "finished" there are two links one to the catalog, and the other to the admin section. ...

      
  1. #1
    Active Member
    Join Date
    Nov 2009
    Posts
    157
    Rep Power
    3


    Default 2.0.15 install problem

    hi

    on step 4 "finished"

    there are two links one to the catalog, and the other to the admin section.

    when either are clicked on, a new page opens, but it is completely blank.

    thanks

  2. #2
    osCMax Developer

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


    Default Re: 2.0.15 install problem

    Check your server error logs. Blank screen = php error.
    Michael Sasek
    osCMax Developer


    osCmax installation service - Have our professionals install osCmax on your server - same day service!
    osCmax 2.0 User Manual - the must have beginners guide to osCmax v2.0

    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

  3. #3
    Active Member
    Join Date
    Nov 2009
    Posts
    157
    Rep Power
    3


    Default Re: 2.0.15 install problem

    hi

    any idea exactly where that log is?
    can't seem to find anything in here: /usr/local/apache/logs/error_log

    also, what could error be?, i haven't altered anything, and am running:

    PHP Version 5.2.11

    PHP Settings
    register_globals Off
    magic_quotes Off
    file_uploads On
    session.auto_start Off
    session.use_trans_sid Off

    PHP Extensions
    MySQL
    GD
    cURL
    OpenSSL

    thanks
    Last edited by spuhg; 02-11-2010 at 05:50 AM.

  4. #4
    osCMax Developer

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


    Default Re: 2.0.15 install problem

    I have no idea what the error could be, which is why I suggested checking your error logs. Check with your host if you are unsure as to where your logs are located.

    Whenever doing a new installation, you may want to have php print the errors to the screen until you get the installation completed. This way any errors are output directly to the screen.

    I cannot reproduce any errors doing a clean install of v2.0.15.
    Michael Sasek
    osCMax Developer


    osCmax installation service - Have our professionals install osCmax on your server - same day service!
    osCmax 2.0 User Manual - the must have beginners guide to osCmax v2.0

    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

  5. #5
    Member
    Join Date
    Jan 2010
    Location
    London
    Posts
    40
    Rep Power
    0


    Default Re: 2.0.15 install problem

    I had the same error but there was an address mistake to database in:

    catalog/admin/includes/configure.php

  6. #6
    Active Member
    Join Date
    Nov 2009
    Posts
    157
    Rep Power
    3


    Default Re: 2.0.15 install problem

    hi

    did you receive the error when doing a new install of 2.0.15?

    thanks

  7. #7
    Member
    Join Date
    Jan 2010
    Location
    London
    Posts
    40
    Rep Power
    0


    Default Re: 2.0.15 install problem

    I was actually replacing a broken install of the new version & didn't know I had to point both copies of configure.php at the database. Took 5 hours to figure out so I thought I would share, in case it helped.

    I does produce a white screen if the addresses are wrong!

  8. #8
    Active Member
    Join Date
    Nov 2009
    Posts
    157
    Rep Power
    3


    Default Re: 2.0.15 install problem

    hi

    that means the 2.0.15 install code is buggy:
    here is my includes/configure.php.new file after the install completes:
    (maybe it is because there is a .new after the name?, maybe this shouldn't be named this way in 2.0.15?)


    <?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://localhost');
    define('HTTPS_SERVER', 'http://localhost');
    define('ENABLE_SSL', false);
    define('HTTP_COOKIE_DOMAIN', 'localhost');
    define('HTTPS_COOKIE_DOMAIN', 'localhost');
    define('HTTP_COOKIE_PATH', '/dev_oscmax/catalog/');
    define('HTTPS_COOKIE_PATH', '/dev_oscmax/catalog/');
    define('DIR_WS_HTTP_CATALOG', '/dev_oscmax/catalog/');
    define('DIR_WS_HTTPS_CATALOG', '/dev_oscmax/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:/xampp/htdocs/dev_oscmax/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', '127.0.0.1');
    define('DB_SERVER_USERNAME', 'root');
    define('DB_SERVER_PASSWORD', '');
    define('DB_DATABASE', 'oscmax_21dev');
    define('USE_PCONNECT', 'false');
    define('STORE_SESSIONS', 'mysql');
    ?>


    thanks
    Last edited by spuhg; 02-12-2010 at 01:47 PM.

  9. #9
    osCMax Developer

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


    Default Re: 2.0.15 install problem

    No, it just means he didn't use the installer, and did not manually do it right.

    The code is not buggy. There is no significant difference in the installer from the previous version, and no changes at all as to how it builds the configure.php files.

    Running the installer will properly set up both configure.php files. Manually doing it requires a little more understanding of what is under the hood.
    Michael Sasek
    osCMax Developer


    osCmax installation service - Have our professionals install osCmax on your server - same day service!
    osCmax 2.0 User Manual - the must have beginners guide to osCmax v2.0

    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

  10. #10
    Active Member
    Join Date
    Nov 2009
    Posts
    157
    Rep Power
    3


    Default Re: 2.0.15 install problem

    hi

    i can install 2.04 no problem on my server, but 2.0.15 doesnt create the configure.php files, they are nowhere to be found, only configure.php.new exists.

    thanks
    Last edited by spuhg; 02-12-2010 at 01:57 PM.

Page 1 of 7 123 ... LastLast

Similar Threads

  1. install problem
    By anchim in forum osCmax v2 Installation issues
    Replies: 1
    Last Post: 11-04-2006, 08:15 PM
  2. problem after install MAX 1.5
    By Anonymous in forum osCmax v1.7 Discussion
    Replies: 1
    Last Post: 01-06-2004, 07:13 AM
  3. Problem with install
    By PingPong in forum osCommerce 2.2 Installation Help
    Replies: 1
    Last Post: 12-30-2003, 09:11 PM
  4. Problem with language after install
    By Anonymous in forum osCMax v1.7 Installation
    Replies: 1
    Last Post: 12-05-2003, 10:52 AM
  5. Please help with install problem (linux)
    By vincent1288 in forum osCommerce 2.2 Installation Help
    Replies: 1
    Last Post: 04-30-2003, 10:06 AM

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
  •