I went through main.inc.php file and included the single quotes on all array variables with braces.
Next error I bumped into was this:
Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or `T_NUM_STRING' in main.inc.php on line 14
The lines reads like this:
11: $thispath = "c:/apache/htdocs/wwwthreads";

12:

13: include("$thispath/config.inc.php");

14: include("$thispath/$config['dbtype'].inc.php");

15: include("$thispath/theme.inc.php");
After some testing I found out that the $config['dbtype'] is giving the error. If you put it alone in the sentence it will work, but when you add $thispath-variable it doesn't work!?
Next error is this sentence:

If (!w3t_langauges)
This sentence purpose is to check if w3t_languages is not defined.
In PHP4 on win32 I have an error saying that the variable w3t_languages isn't defined....
Maybee I have to take a closer look on the perl version for win32 (win 2k) instead and maybee "dump" the PHP-version? <img border="0" title="" alt="[Frown]" src="images/icons/frown.gif" />
PHP seems to be much better in some ways...easier to read, error dumping in the webbrowser and more, but bad compability with Linux versions.