Hi,
I have iTop on windows environment (IIS)
Installing a new class of CI ( Monitor) raises this error:
Warning: unlink(C:\Inetpub\wwwroot\itop/env-production/authent-external/de.dict.authent-external.php) [function.unlink]: Permission denied in C:\Inetpub\wwwroot\itop\setup\setuputils.class.inc.php on line 483
I think it's not about permission but the wrong path, \ and /
How to solve this?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
In PHP there is no difference between forward slashes (/) and backslashes (\) in file names. Even on windows PHP copes with forward slashes. So I think that your trouble is actually a problem of file permissions.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
I have iTop on windows environment (IIS)
Installing a new class of CI ( Monitor) raises this error:
Warning: unlink(C:\Inetpub\wwwroot\itop/env-production/authent-external/de.dict.authent-external.php) [function.unlink]: Permission denied in C:\Inetpub\wwwroot\itop\setup\setuputils.class.inc.php on line 483
I think it's not about permission but the wrong path, \ and /
How to solve this?
In PHP there is no difference between forward slashes (/) and backslashes (\) in file names. Even on windows PHP copes with forward slashes. So I think that your trouble is actually a problem of file permissions.
Thanks for clarification regarding php, I'm still looking, although I set full permissions for everyone
It works! I've granted write permissions to Internet Guest Account.
:)