Hi
i am new to linux platform and now i wanted to remove write permissions of all the php files under my root folder. It would be appreciable if somebody can suggest a solution.
thanks and regards
tismon
Hi
i am new to linux platform and now i wanted to remove write permissions of all the php files under my root folder. It would be appreciable if somebody can suggest a solution.
thanks and regards
tismon
An alternate option would be to use these 2 commands
cd /
chmod -R a-w *.php
But I also recommend (like Matthieu did) to have a look first, what files you are really modifying.