File/folder Permissions
I have an upload function that uploads images into a folder. The folder is set to 777. However when I upload an image file to the folder, the file uploaded is set to 600. Therefore it wont appear on web. I'm not sure why this is doing this for?? Im using the php function move_uploaded_file to upload the file.
View Complete Forum Thread with Replies
Related Forum Messages:
Folder Permissions
My trouble might be simple, but I'm quite new to php, and, perhaps I'm even more simple. It's that I had to chmod 777 two folders to get my scripts do what I wanted them to do, and I don't like it. I have a script running on my ISP's unix-apache -server. It is to read string from a form, and create a text-file in a subfolder 'txt' from it. The essential parts of the script is here: $fnam=$HTTP_POST_VARS[filename]; $handle =fopen("txt/".$fnam, "w"); $teksti=$HTTP_POST_VARS[tekstikentta]; touch('txt/'.$fnam); fwrite($handle,$teksti); fclose($handle); Can't be simpler. This script didn't work until I did a chmod777 for both folders, the one where this script is, and the 't' subfolder. Is there a way to get around this?
View Replies !
PHP Folder Permissions
I've created a Flash application for uploading files and some permissions in the PHP side are causing some hassle. What I need is for the script to create a folder and move the uploaded file to that folder. It does make the folder and can upload the file to a different folder, but not the folder it just made. Code:
View Replies !
Permissions On A Folder Being Created
Does anyone know why the folder being created here ends up with the permissions other than 777? $userdirectory = "./users/$uname"; mkdir($userdirectory, 0777); I want the folder to be 777 and it is not giving this permission
View Replies !
Not Stuffing Up Permissions Etc For My Folder
I need some advice re permissions etc. Here's the situation: at my workplace, I have a website which sits in a folder created by the IT manager, and given certain permissions (I'm not even yet sure how to determine what the permissions are). Whenever I'm at my workplace I just copy and paste files from my local machine to the web folder and it's on the web. Easy! But at home, I have dialup access and needed to upload files to the same folder. So I wrote a php script to upload files. Initially it didn't work as there were permissions issues. So at work I went to the Security tab on the properties of the web folder and clicked "Full Control". From then on, I could upload any files from home. But... 1)When I got back to work, I couldn't always delete or move files in the web folder as I previously could. 2)Now I'm not sure whether I've completely stuffed up the file permissions. So, my bottom line question is this: to enable me to upload and delete files from that directory from home, but so that I can still delete and move files at work, what permissions should I give to the folder? There are 3 "groups": Everyone, me and work users.
View Replies !
Folder Permissions Problem Trying To Run A PHP Script
I have a file permissions problem with PHP. I am using a product called Actinic to develop a shopping cart. This creates a subfolder named ACATALOG into which it loads all of its files. The permissions for this folder is set to 777. I have set up a page in the package to call a .PHP page. When I try to run the PHP page I get the error message: "A file permissions error has occurred running this script. Please check that the script and the directory that it's in are only writable by the site administrator. If this error persists, please contact the server administrator." The shared hosting company says that the folder permissions should be set to 711 drwx--x--x or 755 drwxr-xr-x I am unable to change the permissions of the folder or put the the file in a different folder due to the Actinic package constraints. Is there anything I can do to get this to work?
View Replies !
Check Windows Folder Permissions
I'm writing some PHP code which acts as a web-based file browser. It lists all the directories and files on a server by checking the server directly rather than going through FTP. The files and directories on the server have permissions which restrict them to certain users. What I want the code to do is check if the user who is currently logged in has permissions on the file or directory and if so, check if the permissions are sufficient enough tpo perform the requested operation. Code:
View Replies !
User Permissions Problem With Created Folder.
I use an indexing script that generates thumbnails for pictures and stores them, so the next time someone requests a directory listing, the thumbnail is already there and needn't be re-created. Now, the problem is, the script cant create the thumbnail folders because the base folder is owned by a normal system user, while the script-screated folders or images are owned by the httpd, www-data. Is there a way to have folders/files be created under the correct system user?
View Replies !
Change The Folder Permissions For Uploading To Work
I want my users to be able to upload images to my website. I think I need to change the folder permissions for this uploading to work, not sure how to do this though, I have tried the below but it doesn't work. PHP Code: $uploaddir = chmod("/images/directory", 0777); Here is the code for the page: PHP Code: $uploaddir = "/images/directory"; // Where you want the files to upload to - Important: Make sure this folders permissions is 0777
View Replies !
Changing Write Permissions Of Files And Folder
i want to make the files and folder in my server write protected. i want to change the file read write permissions dynamically so that i canĀ change the write permission of the folder and upload files to it and again make the folder write protected.
View Replies !
How To Change Folder Permissions Without The 'security Tab'
I'm running windows, php version 3.4.1 and i am having a hard time initiating SESSIONS. it turns out i should change the session.save_path c: emp permission to 'modify' but my windows doesn't appear to show me a 'security tab' for me to do this. can someone help me with an example of perhaps an ms dos command prompt, or an alternative way, or even a program to simply change the permission on a folder.
View Replies !
Creates A Temporary Folder And A File Within The Folder.
I have a PHP script which creates a temporary folder and a file within the folder. I have a problem when trying to remove the file and folder using my FTP program. The ownership and group are set to NOBODY. I cannot change the permissions on either the file or the folder. I have tried chmod and chgrp and chown but for some reason I cannot change permissions.
View Replies !
File In Folder Above Root Folder
I have a .php script in a folder one level above my website root, and I'd like to include it in pages in various website subfolders, some below the root. Can I use ($_SERVER['DOCUMENT_ROOT'] in the path in some way.
View Replies !
File Permissions
Im in the process of creating a web based frontend for a program called ASK (Active Spam Killer - http://a-s-k.sourceforge.net) and am currently running into a problem. Currently there is a perl based web front end, but it lacks functionality, and is rather bland, although it does work, and it works without changing any file permissions. The problem im running into is that PHP requires me to make changes to file permissions (ASK files are located OUTSIDE of the web tree) which might end up causing problems as far as security and privacy of email. Has anyone come to any reasonable answer for this type of problem as im sure its a issue for other programs people write.
View Replies !
File Permissions....
I've read the stuff concerning writing to a text file and the related file permission issues on this forum.I have a script that does just that, it takes user-entered data from a Web Form and dumps it to a text file on a server. This works fine on my private server, but is giving me the error...."Could not open stream.Permission denied on Line..." on the company server...The Company machine uses Windows XP. I've tried talking to the System Administrator regarding the Permissions,but he says that giving READ/WRITE/EXECUTE Permissions could create Security Issues. I have been told that previously,a script written in ASP had been used that did exactly the same thing i.e writing to the text file, but there were no File Permissions needed to be set!
View Replies !
Problem With File Permissions : PHP / FTP
My php-script makes directories and puts files in it. But via FTP'ing, I can't delete those files anymore. Also, I need to put a whole bunch of existing files into these, 'made-by-php' directories, and that seems impossible by means of FTP. I get an 'access denied' error every time.
View Replies !
File Permissions After Copy()
This function basically creates a new dir in a determined location and copies the files from an established dir to the new dir. It copies the files and creates the folder ok, bit it sets the file permissons to 755 for the new folder and file contents. I then get a 550 error if I try to delete or chmod them. Any suggestions? I get permission errors in the script if I use the chgrp and chmod functions also. PHP Code:
View Replies !
File Permissions In Win98
I just wanted to know if there was any way I could change my file permissions so I can use the fopen function in windows 98 using Apache and PHP 4.04???? I know how to do it for Linux but I need it for Win 98.
View Replies !
Change File Permissions
i'm trying to create a file management tool online using php. Everytime i copy or create files or folders though it assigns ownership of the new files or folders to the apache id. i tried using backticks, exec, shell_exec and the php shell commands. php safe mode is off. i can create the files and folders using shell commands and have tried to change ownership using chown but that doesn't seem to do anything. any insight can help. the goal is to be able to create these files with the same admin user ownership as all the other files on the site.
View Replies !
CHMOD File Permissions
i have a few question about file permissions. which is the best way to set a permission to a mp3 tha ti can play on the website, but if anyone try to get it from the directory they wont be able to? like if i am playing thissong.mp3 and someone went to the directory to try and get the file music/songs/thissong.mp3 they would get some kind of error. also for folders that don't have a index file. which permission would be the bes tinstead of creating a number of index for each, but not give a use permusic to see the context if the go to mydirectory/functions/ .
View Replies !
File Write Permissions
I'm trying to get an open source PHP app working for my company. It's giving me the following custom error: FreeMED was unable to create a file to record the healthy status of the system. The FreeMED directory should be owned by the user that the webserver is running as... Usually this is 'apache'. You can also fix this by giving universal write access to the home directory of FreeMED. But that is not advisable from a security standpoint. I've narrowed it down to the line of PHP that's breaking it here: $test = CreateObject('FreeMED.FreeMEDSelfTest'); As far as I can tell, I've made the directory it's using as open as possible and it's still giving me that error. The owner is apache (user and group) and the permissions are (temporarily) set at 0777 (universal read/write). Is there some PHP or Apache configuration that needs changed to allow PHP this kind of permission?
View Replies !
File Permissions Windows
i am using the LOAD DATA INFILE to load from a txt file. Although it works fine with the MySQL command it does NOT work with Script...does anybody know why?
View Replies !
File Permissions On Upload
I am uploading picture. This is part of the code if(!move_uploaded_file($_FILES['fullSizePic'.$propId.$i]['tmp_name'], '../images/properties/'.$imageName) ){ chmod('../images/properties/' . $imageName , 0777); } The file uploads and moves into the properties folder. That folder's chmod is 777, but the file's chmod is only 600 making it unreadable by the server. I try to chmod it with php (as you can see above) and it doesn't work.
View Replies !
Not Enough Permissions To Delete A File
I want to delete a file using unlink() function. I'm getting a warning that says that I have no permissions to do that. I suppose that is because the file I'm trying to delete is under the root directory path. I searched the forum about deleting files but found nothing alike my problem...
View Replies !
Upload File Permissions Problem
I've moved an existing site (which I didn't write) from a apache/php/mysql host under windows to a linux apache/php/mysql host. I've sorted out most problems except one. There is an upload function on the site, which uploads files via POST to temp folder and then moves it into a folder on the host using php function move_uploaded_file. Under windows this works fine but on the linux host the uploaded file is created with 600 permissions so it cannot be accessed later by site visitors. The folder it is uploaded into has 755 permissions. Is there a way of setting the default file permissions so each uploaded file can be set to say 644 or do I need to chmod each file after upload?
View Replies !
File Permissions Of PHP Session Files
I noticed that the file permissions (unix) of the PHP session files have only read and write permissions for the Apache process (600 or rw- --- ---). Does anyone have any idea where this permission is set ? I can't find any umask or chmod settings for it in the php.ini file. Can't find anything in the httpd.conf either. Is it set in the PHP code that implements session_start()?
View Replies !
Creating A File, Uploading, And Permissions
I'm using php4 and i want to check for a file, if it doesn't exist it should be created. My problem is i have to create it with specific permissions specifically 666 so that the script can then write to it. I don't have ftp access. I'm also looking for any tutorials, recent ones, using php4 for creating file upload areas, i'm trying to make one of those as well.
View Replies !
File And Directory Permissions For PHP Application
I make the directory 0777 and then write the file then i make the file i tried a few but they keep from being read im sure the file is ok i think i can handdle file permissions but i think its directory permissions im having a prob with. Its an image file i write it and then need to use it so make the directory 0777 and then write the file and then what to the file and what to the directory ? i am using php ftp() but if anyone knows any differences with php chmod() then please tell me apart from that i do a 777 righth now and leave it at that. what should i being to the directory and file after to make it secure because i dont whant people tampering with them ? OH AND THIS PROBS ON TH MAC OSX 10.4 TIGER my chmoding works fine on linux the way it is 0777 and then a 655 + somtimes i play with the permissions of the directory throgh the os GUI or the shell and i got it to tell me i dont have permissions in the OS but in PHP its ok is this coz PHP got ownership of it when i messed with the addtional BIT.
View Replies !
File Permissions Denied Error
i'm using the following code to create a file. PHP Code: $fn = "file.php"; $FileHandle = fopen($fn, 'w+') or die("can't open file"); $stringData = "Something"; fwrite($FileHandle, $stringData); fclose($FileHandle); when i check the file properties i can see that the file's permission is set to 644 so when i use the following code to delete it i get a permission denied error. PHP Code: $myFile = "file.php"; $fh = fopen($myFile, 'w') or die("can't open file"); fclose($fh); $myFile = "$file.php"; unlink($myFile); what shall i do to set the permission to 777 when creating the file?
View Replies !
Chmod Mkdir And File Permissions..
I'm trying to create directories and move files with the right permissions. When I make a dir using mkdir I'm setting the permission to 777 to my folder variable $t2 below, but when I check the chmod it's 755? When I copy files over to this folder the file permission are set to 644 and I can't even get rid of them on the server because it won't allow me to delete them. Is there anyway to set permissions to a file as you're using the copy function? Code:
View Replies !
Set Up The Permissions So That My Script Can Simply Fopen A File For Writing.
I am rather new to PHP and a relative newbie to Linux too. I have a webserver at home (Apache 2.0.48 on SuSe 9.0, PHP4). I have some scripts, one of them needs to be able to create logfiles somewhere on my machine. It must also later be able to read from and write to these files again. Sofar I get a permission error. I tried chmodding 666 or 777 the directory in which the files could reside, to no avail. How do I set up the permissions so that my script can simply fopen a file for writing. Or if that's not the issue, what am I doing wrong or overlooking ? The errors: Warning: fopen(logfileslog1.txt): failed to open stream: Permission denied in script1.php on line 142 Warning: fwrite(): supplied argument is not a valid stream resource in script1.php on line 154 Warning: fclose(): supplied argument is not a valid stream resource in script1.php on line 161 It's the first I am puzzled about, the 2nd and 3rd are a logical consequence. By the way, reading from and writing to a file I have previously created myself with exactly the names I tried to get created by the script (echoed the name, ok) is no problem at all. So I don't think it has much to do with a safemode or open_basedir setting. I also tried creating the scripts in the same dir the script itself resides. Did not work either.
View Replies !
Linux File Permissions On Maildir, Apache User
i have the following problem. I am trying to create maildir directories on the local filesystem then chmod, chown them to courier:courier (for courier mail server). the courier mail server reads and writes on these maildirs on the local filesystem and they need to have courier:courier ownership. it does not work because the directories are created with apache:apache ownership and apparently only root can change ownership. My question is as follows. Is the only solution to this problem to add the courier user to the apache group?
View Replies !
Open A File To Store Some Date :: Permissions Dilemma
I want to open a file to store some data. However, when I use fopen('filename', w) I get permission denied. So, I've changed the permissions of the directory to get rid of the permission denied problem. Unfortunately, this seemed to require changing the directory to have permissions 777.
View Replies !
Upload File And Save The File Into One Of Folder
I'm trying to solve problme with upload file, one this scripts is to uplaod file, is works great but something missing myself that the file is missing not sure where they save to. I just need help where to write code to save the file into one of folder in C drive. Code:
View Replies !
How To Protect A File Or Folder?
I want to protect my URL How to realize the following function? Users click on the URL, a login htm page appears. Users enter username, password and click on the submit button. PHP file consults mySQL to get username, password and registration date. If user account is valid, user may download this software.
View Replies !
Folder/File Perms...
I made a PHP script that creates a new folder (say "Folder 1") and then copies a file from the parent folder (call the file "index.php") into the new folder; so we get Folder 1/index.php Now, how can I set the ownership of this file and folder, automatically via the PHP script, to me (the server user), not httpd?
View Replies !
Seperate Folder For File
I have written a form that accepts information and a file. It currently writes the file to the database table also but I would like it to write the file to a seperate folder but keep the relationship with the other information so it can be searched and retreived later. Also how would I go about allowing for mulitple files to be uploaded and linked to the table information? Here is the scrip I wrote for the upload to happen: Code:
View Replies !
Searching File In Folder
I want to ask how can I list all the files and folders inside a given directory. example: C:Documents and Settingsuser11My Documents is the directory. I want to get all the files and folders name inside it.
View Replies !
Php Folder & File Creator
But what I would like to do is have a php form (eg back end manager) that i can fill in with: file name folder name todays date page title page body text And when you click the submit button it creates the folder with the name I specified and with in that folder it creates the .php page with the other info that i put into the form. I've found scripts that will create the page, but not the folder. Is it possible? or should I find another way round this eg database and a backend manager.
View Replies !
File Upload To New Folder
On uploading file.., the file moves into the temp dir "C:Windows Temp" which is not accessible in the server. Is there any way to store the uploaded files in a new directory and then move it to desired directory?
View Replies !
|