Search 5,000,000+ questions and answers.

Frequently Asked Questions

How do I change file and/or directory permissions?

Software to create Common Gateway Interface (CGI) for online...
There are two ways this can be achieved - via ftp or telnet. Only some ftp clients have the ability to change file and directory permissions. If your ftp client cannot, you will have to use telnet. If you are unfamiliar or uncomfortable with telnet, or do not have telnet access, then please ask your web master to do the job for you. Products like CGI*StarPro generate CGI scripts in a language called 'Perl'.
Related Questions

How to Change Permissions of a file or a directory?

In order to do this, check the box corresponding to the file or directory and choose its permissions using the drop-down menu. Then just click Change. Please note that .php, .cgi, .pl files must be executable. You must change their mode to 755 in order to run on them our servers.
Related Questions

How to change permissions (CHMOD) of a file or a directory?

AWARDSPACE.COM - Free Web Hosting, Domain Hosting, Professio...
If you upload with File Manager all files/folders are uploaded/created by default with 755 permissions. You can change the permissions of your files/folders only via FTP client. Most well-known FTP clients on right click of a file/folder you can find an option for changing file/folder permissions.
Related Questions

What are file/directory permissions and how can I change them?

NBCS Frequently asked Questions (FAQ) Answers
Files created on Eden or RCI are created with default protections (see man umask for details) set so that the only one who may read them is you. These permissions are displayed when you use the command ls -l Sometimes you might want to make a file readable to everyone. If so, you can change a file/directory's permission with the chmod command.
Related Questions

What are file permissions and how do I change them?

The Broadband Reports Windows XP FAQ - dslreports.com
File permissions are the system's way of telling you what you can and cannot do with a file or folder. They are governed by Access Control Lists (click for definition). There are two ways of setting file permissions. You can do it the graphical way or the command-line way. To do it graphically, you must have Simple File Sharing disabled from the View tab of Folder Options (Professional only) or be in Safe Mode (either). Right-click on the object of your choice and click Properties.
Related Questions

What do I set the file/directory permissions to ?

Help Desk | FAQ's about Shell Access
To change the permissions of files/directoies, issue the command "chmod" at the UNIX command prompt followed by the three digit number and filename. Here is a list of what numbers are assigned when setting permissions and the UNIX command.
Related Questions

What are permissions and how do I set them on a directory or file?

Website Pros Site Add-Ons - Frequently Asked Questions
On a unix server, every directory and file possess certain rights or permissions as to who can access the directory or file and what kind of access is allowed. This property give you a level of security regarding unauthorized use of your web site's resources. FTP into your website and travel to the directory containing the file for which you wish to set permissions. Highlight the file, and click the right mouse button.
Related Questions

What do the file and directory permissions mean?

Linux Nano-FAQ
rw-r--r-- 1 root root 578 Apr 15 12:58 passwd lrwxrwxrwx 1 root root 13 Oct 22 1999 utmp -> /var/log/utmp drwxr-xr-x 2 root root 4096 Oct 21 1999 vga/ -r-xr-xr-x 1 root bin 102724 Oct 9 1999 telnet The first group of ten letters are the permissions for this file. The first letter tells you what kind of file you are looking at: Special files are usually found in the /dev directory. These are devices which either let you access some kind of hardware or perform other special functions.
Related Questions

Why do I need to change file permissions?

Technical FAQ for Easy Availability page
Because web server operating systems place a heavy emphasis on who is allowed to Read, Write, and Execute files and scripts on your server. This is for security purposes. In Easy Availability there are a couple of files that need to be marked as 'Writeable' in order for the program to work.
Related Questions

FAQ
File permissions allow you and others to access each file on your site for reading, writing, and executing. CGI scripts must be made 'executable' in order to function correctly, while HTML files should be 'readable' to everyone by default. If you need to change file permissions on a particular file or directory, follow these steps with WS-FTP for Windows: Right click on the file which requires permission alteration. Choose 'chmod (UNIX)' and left click. A window should appear:
Related Questions

How do I change the access permissions of a file?

Linux Nano-FAQ
To allow only the owner to access a file in any way: chmod go= file (read: group and others equals nothing) To set a file exactly to rwxr-xr-x: chmod u=rwx,g=rx,o=rx (read: user equals read write execute, group equals read and execute, others equals read and execute) There is another little trick that can come in handy: Imagine you have some files that are readable only by you. Some of them are also executable.
Related Questions

Which permissions should I assign to this file/directory?

Csoft.net - Frequently Asked Questions
Your home directory should preserve its default permissions (0711), because the o+x (execute by others) privilege is required if you are using mail services, cvs/subversion sub-accounts, or web service (the latter does not apply to custom web servers under the Advanced and Corporate packages). Web applications such as CGI/FastCGI and PHP scripts all execute under your own credentials and theferore do not need to be readable by anyone but you.
Related Questions

How can I use file permissions in afs?

The umich.umce.login FAQ List
These permissions are the afs Access Control Lists, or ACLs. You can set (and list) these with the "fs" command. To list the ACL for a particular directory, use the command: where "directory" is the directory we're changing, remembering that you can always use a period to indicate the current directory, "user" is the uniqname of the person we are permitting (or depermitting) the directory to, "rlidwka" is any combination of that list of letters, which are explained below.
Related Questions

Can I change file permissions if I only have FTP access?

SJ Namo Hosting - Support > FAQ
Yes. Ftp access also allows you to run a variety of commands. These include the chmod &chown commands.
Related Questions

Local Analytics - Google Analytics plugin for WordPress blog...
You can chmod / change file permission using your FTP client. But the steps are different for different FTP programs. In most FTP clients, you can chmod a file by choosing the option Properties? from the right click context menu.? Also checkout this article by Stadtaus.com on changing file permission in 5 popular FTP clients. It is not possible with Local Analytics.
Related Questions

How do I change a file or directory permission?

DNO FAQ
Click on the desired file or directory in your control panel and on the right side of the page click on change permision. The permission for html files should be 644. The permission for cgi and pl files should be 755. All the directories permission should be 755.
Related Questions

How do I change the default file in a directory?

F2G.NET - Free web hosting, no forced ads
Normally, if a browser tries to look at a directory name without being given a specific file name the server will attempt to return index.html. However, the server also recognises the following files, and will automatically try to display them. index.html index.shtml welcome.html index.htm welcome.htm INDEX.HTM WELCOME.HTM INDEX.HTML WELCOME.HTML default.htm Default.htm default.html DEFAULT.HTM home.htm index.shtm INDEX.SHTML INDEX.SHTM index.wml INDEX.WML Note index.
Related Questions

Can file appenders create files with different permissions?

Log::Log4perl::FAQ - Frequently Asked Questions on Log::Log4...
Typically, when Log::Log4perl::Appender::File creates a new file, its permissions are set to rw-r--r--. Why? Because your environment's umask most likely defaults to 0022, that's the standard setting. What's a umask, you're asking? It's a template that's applied to the permissions of all newly created files.
Related Questions

WHAT ARE FILE PERMISSIONS?

CGI Extremes - Tutorials - General CGI Questions
Every file on your web server has permissions set on it. Permissions tell the server which files are allowed to be written to, read from, or executed by which users. There are three different parts of file permissions: Owner - this is defined as the person who created the file. All of the files on your web site are owned by you. Group - a list of other users in your "group". These permissions should be set the same as "world". World - this is basically anyone else.
Related Questions

What are permissions and how do I change them?

STWing Computing Services
Permissions are the access controls (security) on files to determine who and read/write/execute them. You can change the permissions on files and directories with the 'chmod' command.
Related Questions

Can I change file permissions with my FTP program?

netINS Showcase FAQ
Yes! Using your FTP program, you have the ability to change particular file permissions. This is particularly important when using CGI scripts and you get the error "Script not executable. Issue 'chmod 755 filename'". For some screenshots on where to go in some of the more popular FTP clients, go here.
Related Questions

How do I change permissions to a file/director using FTP?

Fastweb Romania - gazduire web, design web, servere dedicate...
That depends on your FTP client. Normally right click on the file/director and you can change permissions.
Related Questions

Got A Question? Ask Our Community!


More Questions >>

© Copyright 2007-2008 QueryCAT
About • Webmasters • Contact