there is problem with absolute links when using virtual machine with shared ntfs folders.
absolute paths in ntfs symlinks does not apearing on vritual machine linux os.
php symlinks supports only absolute paths for windows environment, but there is still way to use relative paths for symlinks. I implemented a litle workaround using native mklink command, i tested and it works great.
also, there is problem duriong uninstallation. happens on windows while deleting symlinks with no targets. is_dir returns false for symlinks which linkling to unexisting folder. in this case i think it is fine if will try to remove it by using rmdir even if is_dir returned false.
there is problem with absolute links when using virtual machine with shared ntfs folders. absolute paths in ntfs symlinks does not apearing on vritual machine linux os. php symlinks supports only absolute paths for windows environment, but there is still way to use relative paths for symlinks. I implemented a litle workaround using native mklink command, i tested and it works great.
also, there is problem duriong uninstallation. happens on windows while deleting symlinks with no targets. is_dir returns false for symlinks which linkling to unexisting folder. in this case i think it is fine if will try to remove it by using rmdir even if is_dir returned false.
do you think it doable?