A Simple Video that shows you guys how to Set Permission to 777 in iFile
Many people don't know how so enjoy PS: Video not mine, all credits to that person ----- You can also set permissions via Terminal:
chmod 777 /var/mobile/Applications/path/to/your/file/file.extension
-----
Read – You can only view the file, but cannot modify the content of the file. When applied on Folder, you can only view the files in the folder, but you can’t delete from or add files into the folder.
Write – You can edit and modify the file. For Folders, you can delete and add files into the folder.
Execute – Execute is mainly used when you need to run the file (commonly used when you need to run a script).
0 – no permission 1 – execute 2 – write 3 – write and execute 4 – read 5 – read and execute 6 – read and write 7 – read, write, and execute
-----
Common permissions: 644
User: Read, Write
Group: Read
World: Read
755
User: Read, Write, Execute
Group: Read, Execute
World: Read, Execute
775
User: Read, Write, Execute
Group: Read, Write, Execute
World: Read, Execute
777
User: Read, Write, Execute
Group: Read, Write, Execute
World: Read, Write, Execute
More information about file permissions: http://www.maketecheasier.com/file-permissions-what-does-chmod-777-means/