Rene Nieuwburg - 2014-02-03 14:26:45 -
In reply to message 1 from Peter Pan
No, I think we have a problem here that has to do with the differences between Windows and Linux/Unix. In Unix you don't use backslashes in paths, that's why the autoload function won't work. Here is my correction for Linux/Unix users:
function __autoload($fileName) {
$fileName = str_replace("\\","/",$fileName);
require_once $fileName . '.php';
}