Issue
someone ask me but don't know The script install.sh requires elevated permissions to execute. Which command should be used to set execution permission?
chmod -r install.sh
chmod 400 install.sh
chmod -R 400 install.sh
chown install.sh
Solution
Firstly, the file should be owned by the correct user. If yes, then executing chmod +x install.sh
or chmod 755 install.sh
should give execute permission to that file
Answered By - Abhishek S Answer Checked By - Gilberto Lyons (WPSolving Admin)