axis / axiscommerce

Open Source Shopping Cart
axiscommerce.com
GNU General Public License v3.0
1 stars 1 forks source link

Wrong paths #161

Closed vladkrutov closed 12 years ago

vladkrutov commented 12 years ago

Installation failed and digging through forum showed that path variables was wrong after commenting out of line 32 in install/index.php and line 46 in index.php everything works fine.

was install/index.php

set_include_path(
    realpath('library')  . PATH_SEPARATOR
    . realpath('app/code') . PATH_SEPARATOR
    . get_include_path()
);

now install/index.php

set_include_path(
    realpath('library')  . PATH_SEPARATOR
    . realpath('app/code') . PATH_SEPARATOR
#    . get_include_path()
);
  1. Is it possible to make these files more universal?
  2. Is it ok to leave these lines commented?
vladkrutov commented 12 years ago

I think that's the same like Issue #48

vovayatsyuk commented 12 years ago

Yes, we think about this too. We will comment this line in the next release by default.

This paths are not used by the Axis, so it's ok.

vladkrutov commented 12 years ago

Many thanks.