I'm bringing up Erfurt Wiki on a Windows/IIS/*FlatFiles system. I just wanted to put up some of my changes here for others with the same problems.

Some regexs needed to be changed but the core has been updated to accomodate both operating systems. The other change to consider is in imgresize_gd.php, though there have been some changes in this area also:

if (!function_exists("imagecreate")) { #-- try to load gd lib

dl("gd.so") or dl("gd.dll");
}

was best replaced by:

if (!function_exists("imagecreate")) { #-- try to load gd lib

dl("extensions/php_gd2.dll");
}

since windows doesn't seem to tolerate failed calls to "dl."

--AndyFundinger

bottom corner