Problems with realpath()
Status: Beta
Brought to you by:
pappkamerad
In wrapper.php, you're using $HTTP_SERVER_VARS['SCRIPT_FILENAME'] in $filesystem_root_path but realpath($HTTP_SERVER_VARS['SCRIPT_FILENAME']) in $filesystem_pAG_path_abs.
As realpath() resolves symlinks the other handling code doesn't construct a proper $filesystem_pAG_path_abs causing a file not found error if you have symlinks in the path to SCRIPT_FILENAME (i.e. /htdocs -> /var/www)
Resolve this by adding a realpath() call in assignment of $filesystem_root_pat