osCmax v2.5 User Manual
Page 2 of 2 FirstFirst 12
Results 11 to 16 of 16

URGENT!!!!!! Problem when installing/configurating

This is a discussion on URGENT!!!!!! Problem when installing/configurating within the osCommerce 2.2 Installation Help forums, part of the osCommerce 2.2 Forums category; C:\FoxServ\www...

      
  1. #11
    New Member
    Join Date
    Oct 2003
    Posts
    8
    Rep Power
    0


    Default

    C:\FoxServ\www

  2. #12
    Active Member
    Join Date
    Jan 2003
    Location
    Surrey, UK
    Posts
    126
    Rep Power
    0


    Default

    move (copy) the whole install directory to c:\FoxServ\www\install\etcetcetc

    that might work

    might not of course

    if not then save this code below as install\templates\pages\install_3.php, it replaces the existing file and prints the dir paths to screen.

    <?php
    /*
    $Id: install_3.php,v 1.8 2003/07/11 14:59:01 hpdl Exp $

    osCommerce, Open Source E-Commerce Solutions
    http://www.oscommerce.com

    Copyright (c) 2003 osCommerce

    Released under the GNU General Public License
    */

    $script_filename = getenv('PATH_TRANSLATED');
    if (empty($script_filename)) {
    $script_filename = getenv('SCRIPT_FILENAME');
    }
    echo 'script_filename: ' . $script_filename . '<br>';
    $script_filename = str_replace('\\', '/', $script_filename);
    $script_filename = str_replace('//', '/', $script_filename);

    $dir_fs_www_root_array = explode('/', dirname($script_filename));
    $dir_fs_www_root = array();
    for ($i=0, $n=sizeof($dir_fs_www_root_array)-1; $i<$n; $i++) {
    $dir_fs_www_root[] = $dir_fs_www_root_array[$i];
    }
    $dir_fs_www_root = implode('/', $dir_fs_www_root) . '/';
    echo 'dir_fs_www_root: ' . $dir_fs_www_root;
    ?>

    <p class="pageTitle">New Installation</p>

    <p><b>Database Import</b></p>

    <?php
    if (osc_in_array('database', $HTTP_POST_VARS['install'])) {
    $db = array();
    $db['DB_SERVER'] = trim(stripslashes($HTTP_POST_VARS['DB_SERVER']));
    $db['DB_SERVER_USERNAME'] = trim(stripslashes($HTTP_POST_VARS['DB_SERVER_USERNAME']));
    $db['DB_SERVER_PASSWORD'] = trim(stripslashes($HTTP_POST_VARS['DB_SERVER_PASSWORD']));
    $db['DB_DATABASE'] = trim(stripslashes($HTTP_POST_VARS['DB_DATABASE']));

    osc_db_connect($db['DB_SERVER'], $db['DB_SERVER_USERNAME'], $db['DB_SERVER_PASSWORD']);

    $db_error = false;
    $sql_file = $dir_fs_www_root . 'install/ms2-max.sql';

    osc_set_time_limit(0);
    osc_db_install($db['DB_DATABASE'], $sql_file);

    if ($db_error != false) {
    ?>
    <form name="install" action="install.php?step=3" method="post">

    <table width="95%" border="0" cellpadding="2" class="formPage">
    <tr>
    <td>
    <p>The following error has occurred:</p>
    <p class="boxme"><?php echo $db_error; ?></p>
    </td>
    </tr>
    </table>

    <?php
    reset($HTTP_POST_VARS);
    while (list($key, $value) = each($HTTP_POST_VARS)) {
    if (($key != 'x') && ($key != 'y') && ($key != 'DB_TEST_CONNECTION')) {
    if (is_array($value)) {
    for ($i=0; $i<sizeof($value); $i++) {
    echo osc_draw_hidden_field($key . '[]', $value[$i]);
    }
    } else {
    echo osc_draw_hidden_field($key, $value);
    }
    }
    }
    ?>

    <p> </p>

    <table border="0" width="100%" cellspacing="0" cellpadding="0">
    <tr>
    <td align="center"><a href="index.php"><img src="images/button_cancel.gif" border="0" alt="Cancel"></a></td>
    <td align="center"><input type="image" src="images/button_retry.gif" border="0" alt="Retry"></td>
    </tr>
    </table>

    </form>

    <?php
    } else {
    ?>
    <form name="install" action="install.php?step=4" method="post">

    <table width="95%" border="0" cellpadding="2" class="formPage">
    <tr>
    <td>
    <p>The database import was <b>successful!</b></p>
    </td>
    </tr>
    </table>

    <?php
    reset($HTTP_POST_VARS);
    while (list($key, $value) = each($HTTP_POST_VARS)) {
    if (($key != 'x') && ($key != 'y') && ($key != 'DB_TEST_CONNECTION')) {
    if (is_array($value)) {
    for ($i=0; $i<sizeof($value); $i++) {
    echo osc_draw_hidden_field($key . '[]', $value[$i]);
    }
    } else {
    echo osc_draw_hidden_field($key, $value);
    }
    }
    }
    ?>

    <p> </p>

    <table border="0" width="100%" cellspacing="0" cellpadding="0">
    <tr>
    <?php
    if (osc_in_array('configure', $HTTP_POST_VARS['install'])) {
    ?>
    <td align="center"><input type="image" src="images/button_continue.gif" border="0" alt="Continue"></td>
    <?php
    } else {
    ?>
    <td align="center"><a href="index.php"><img src="images/button_continue.gif" border="0" alt="Continue"></a></td>
    <?php
    }
    ?>
    </tr>
    </table>

    </form>

    <?php
    }
    }
    ?>

  3. #13
    Active Member
    Join Date
    Jan 2003
    Location
    Surrey, UK
    Posts
    126
    Rep Power
    0


    Default

    then stick up a screen shot!

  4. #14
    New Member
    Join Date
    Oct 2003
    Posts
    8
    Rep Power
    0


    Default

    It does not help......It's the same as the last screen dump.....

    What's the difference between osCommerce 2.2 Milestone 2 and MS2 MAX version?

  5. #15
    Active Member
    Join Date
    Jan 2003
    Location
    Surrey, UK
    Posts
    126
    Rep Power
    0


    Default

    it should have printed 2 filepaths to the top of the screen?

    MAX uses a different sql filename as I just found out. But that shouldn't affect you. Did you try moving the install directory?

    I am running out of ideas


    jon

  6. #16
    New Member
    Join Date
    Oct 2003
    Posts
    8
    Rep Power
    0


    Default

    I tried moving the install dir also.... not working... I'm giving up................................................ ................ maby I shal install mysql and apache all over ant try a fresh beginning..... tanks for helping me

Page 2 of 2 FirstFirst 12

Similar Threads

  1. CVV problem after installing mod
    By joanstead in forum osCMax v1.7 General Mods Discussion
    Replies: 1
    Last Post: 12-29-2005, 05:56 PM
  2. page_parse_time.log error on site
    By Walter in forum osCommerce 2.2 Modification Help
    Replies: 4
    Last Post: 11-27-2005, 02:14 AM
  3. URGENT - PLEASE HELP - PWA Problem
    By ukgoods in forum osCommerce 2.2 Modification Help
    Replies: 1
    Last Post: 07-29-2004, 10:31 AM
  4. URGENT HELP SESSION PROBLEM
    By ukgoods in forum osCommerce 2.2 Modification Help
    Replies: 0
    Last Post: 07-19-2004, 11:33 AM
  5. Problem installing Cool Menu mod
    By ozone in forum osCMax v1.7 General Mods Discussion
    Replies: 2
    Last Post: 07-08-2004, 10:15 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
  •