06/12/2012, 11:22:01
I use the stable release 1.11.3 not the SVN version.
And i'm on a Linux shared host.
To debug on WAMP, you can echoing the $path and $dirs array then compare the differences in the result.
Do something like this after $dirs = $this->getDirs();
And i'm on a Linux shared host.
To debug on WAMP, you can echoing the $path and $dirs array then compare the differences in the result.
Do something like this after $dirs = $this->getDirs();
Code :
$dirs = $this->getDirs();
echo "This is my real path".$path."<br>";
echo "<pre>";
print_r($dirs);
echo "</pre>";
...