![Picture of Panos Kyriakakis Picture of Panos Kyriakakis](/picture/user/169839.png)
Panos Kyriakakis - 2006-11-07 15:26:15 -
In reply to message 4 from Lars Oliver Mautsch
True. There is a promble with window's full paths.
Drive letter eg C:\ is tranlated by realpath() function to something strange and php file systems functions dont work properly.
So, I just remove drive letter from real path to make it work. So you must have installed it on drive other than C: ...........
Check example.php, line 46
$abs_path = str_replace('\\','/',str_replace('C:','', dirname(__FILE__))).'/';