I have very little experience with PHP, but I am looking for an inexpensive/free shopping cart solution for my wife and came across CubeCart. It had everything I was looking for as well as a good price, but I am having some difficulties with the installation. It seems everybody on the CubeCart forums is a Linux/Unix person and only wants to bash Windows rather than offer much help. So, I wanted to see if anybody here could offer me some pointers. The installation when just fine and I can access the administration part of the cart without issue. However, when I attempt to access the store front, I get a series of errors like this: Warning: include(language/en/home.inc.php) [function.include <http://store.kcoutlet.com/function.include> ]: failed to open stream: No such file or directory in D:\Admentus\domains\kcoutlet.com\wwwroot2\includes\content\index.inc.php on line 38 Warning: include() [function.include <http://store.kcoutlet.com/function.include> ]: Failed opening 'language/en/home.inc.php' for inclusion (include_path='.;C:\PHP\includes') in D:\Admentus\domains\kcoutlet.com\wwwroot2\includes\content\index.inc.php on line 38 In following through the code, basically this is a nested include. The root index.php file has the following line: include("includes/content/index.inc.php"); Then, the includes/content/index.inc.php file has the following line at line 38 which is causing the error message: include("language/".$lang_folder."/home.inc.php"); $lang_folder is set to "en" in the index.php file, resulting in the include("language/en/home.inc.php") code in the error message. I have checked and the file (/language/en/home.inc.php) does exist, so it is not something that simple. So, does anybody have any experience with CubeCart or could just offer me some basic PHP debugging help to trace this issue down? Thanks -- Jeff