10
votes
2answers
172 views
How do I make git ignore mode changes (chmod)?
I have a project in which I have to change the mode of files (chmod) to 777 while developing, but which should not change in the main repo.
git picks up on chmod -R 777 . and marks all files as …
5
votes
4answers
600 views
How to recursively chmod on subdirectories?
I want to recursively chmod all of the subdirectories below my calcium directory:
chmod a+wx calcium
How do I change the above command to do this?
I believe I'm using bash shell although I'm not …
3
votes
2answers
27 views
set file permissions in header before forced download in php?
Im generating a file to present to the user for download, but the server isnt letting me open it, because it needs to have permissions of 777 before it can do so.
Here is my code
$fh = …
3
votes
2answers
78 views
How do I make git accept mode changes without accepting all text changes?
I've got the opposite problem from "How do I make git ignore mode changes (chmod)?" I've got a file that I've changed executable permission on, but there are also some text changes, and I want to …
2
votes
4answers
2k views
SSH into Amazon EC2 Instance
I'm working to set up Panda on an Amazon EC2 instance.
I set up my account and tools last night and had no problem using SSH to interact with my own personal instance, but right now I'm not being …
1
vote
0answers
74 views
Find all files on server with 777 permissions [closed]
Hello,
I'm looking for a Linux command to go through all the directories on my server and find all files with 777 permission. The output would be a list of all those files with full path.
1
vote
2answers
112 views
How to chmod of subdirectories of a provided path (BASH)
I need a script that takes a single command line argument that is a directory path. The script should check the argument to determine if it is in fact a directory. If it is a directory, then the …
1
vote
1answer
40 views
How can I audit all chmod and chgrp commands?
Corporate security policies are starting to require low level event logging. For example, file access permission changes. One solution is to use SELinux but our knowledge of this is sparse at best. …
1
vote
0answers
112 views
what is the @ after the permissions for in ls -l on a mac? [closed]
Consider the following output from ls -l on OS X 10.5.8
drwxr-xr-x 3 user staff 102 Aug 26 20:21 downloads
drwxrwxrwx@ 10 user staff 340 Aug 26 20:12 images
Can anybody tell me what the @ …
1
vote
6answers
425 views
PHP: Setting permissions so I can write a file?
I am trying to create a file with PHP here is my code:
$file_to_send = 'ftp_test_from_created_file.txt';
chmod($file_to_send, 0777);
$fh = fopen($file_to_send,'w');
$tsv_line = …
1
vote
4answers
294 views
Unable to set chmod 640?
I just installed phpbb on my website. According to phpbb advice, I was suppose to set the config.php chmod to 640. In filezilla(my ftp program), I tried right-click the file, then select file …
1
vote
2answers
359 views
How do i secure a web server’s image upload directory ?
For my web application, people can upload images from a web form to my web server.
What should I set the CHMOD settings for that image upload directory so that people can upload images (from the web …
1
vote
2answers
102 views
filesystem permissions while developing on different machines
Hi,
I have installed a xampp (apache + mysql + php) stack on a portable volume (truecrypt volume on a usb drive) that I use on different linux machines, for webapp development.
This volume is …
1
vote
4answers
84 views
Which files do control the visibility of your website?
I run the following command at uni to my user account
chmod -R 700 *
Then, I run
chmod -R 755 public_html
My homepage remains to be "Forbidden" when I browse to it.
The permissions of my user …
1
vote
4answers
424 views
check permissions of directories in python
hi
i want a python program that given a directory, it will return all directories within that directory that have 775 (rwxrwxr-x) permissions
thanks!
