phpgenie / mobile-responsive-oscommerce

A responsive version of osCommerce
4 stars 3 forks source link

Issue in new installation #1

Open dipanchokshi opened 10 years ago

dipanchokshi commented 10 years ago

Hi Thanks for creating this. I have downloaded and installed in my local system and I found below error.

Warning: require(includes/languages/.php): failed to open stream: No such file or directory in D:\xampp-portable\htdocs\mobile_osc\includes\application_top.php on line 279

Fatal error: require(): Failed opening required 'includes/languages/.php' (include_path='.;\xampp-portable\php\PEAR') in D:\xampp-portable\htdocs\mobile_osc\includes\application_top.php on line 279

I have version PHP Version 5.4.7

Please let me know why I am facing this.

Thanks.

cargi commented 10 years ago

Hi there,

In includes/application_top.php you will need to modify $HTTP_GET_VARS['language'] to be $_GET['language']. $HTTP_GET_VARS won't work with your version of PHP. There's a pretty good upgrade guide here which should help: http://www.arnlweb.com/oscommerce-5-3-upgrade-steps/.

Thanks,

Andy

dipanchokshi commented 10 years ago

Thanks Andy. I appreciate your response.