Tagged Questions
1
vote
1answer
24 views
Reading File from Internal storage with No Read/Write Permissions?
I have a file on Internal Storage on the path e.g. /data/data/<package name>/folder/myfile
I don't have permissions to access this file but for my implementation I have to read this file. for ...
0
votes
1answer
39 views
Warning: Unknown: SAFE MODE Restriction in effect. The script whose uid is 10014 is not allowed to access / owned by uid 0 in Unknown on line 0
I have a site on one of those low cost web hosts and I've been having some problems with some files generating the following error:
Warning: Unknown: SAFE MODE Restriction in effect. The script ...
0
votes
1answer
30 views
set file permission to android
I am not able to paste the *.ttf(font file) file in system root of my funbook micromax tablet.
so how can i set permission of this system folder. or is there any other option to install font to my ...
0
votes
2answers
40 views
How come my Apache can only access root owned files?
Running apache on centos 6.4 and my web server can't see any files unless the root user creates or copies them.
ps aux | grep apache shows that apache is running as apache user, not root.
I tried ...
0
votes
1answer
15 views
File not being created even though write permissions exist
I followed the selected answer in this question, I am trying to export what is in the memory for a certain variable to a .php file. Then I later require_once the php file that was made.
The problem ...
1
vote
2answers
43 views
silverstripe - file permissions for assets folder
it happens often that an silverstripe installation does not have the right permission to write in the assets folder - e.g. for saving resampled images...
I wonder what is the best permissions setting ...
0
votes
2answers
53 views
File upload works, but can't move file to another directory
my project directory is /public_html/test/
ownership and permission are as below,
drwxrwsr-x 8 lamp apache 4096 Apr 8 10:46 public_html
drwxrwsr-x 6 lamp apache 4096 Apr 2 14:58 test
a web ...
0
votes
0answers
27 views
Suddenly, folder in cPanel shows persmission 000 and can't delete / change permissions?
I haven't done/updated anything in the last 2 weeks to my website. And today, I receive a message from one of my customers saying they can't access my XFOLDERX page, like this:
"Excuse me man, I cant ...
0
votes
1answer
36 views
PHP Composer permissions on packages
We have a server running Windows Server 2012 on AWS. We use composer to manage packages, and run the composer [install/update] commands on the main Administrator account. We run our scripts as a web ...
-1
votes
0answers
59 views
Filezilla: Premission denied despite full file premissions [closed]
I got an FTP username and password from a website administrator to upload the new site i designed. I tried to upload files and it didn't work.
The file upload was aborted with a messaage 550 ...
0
votes
2answers
50 views
Django private file upload
I would like admin users to be able to attach private arbitrary files related to my models a la Share Point. As Django is primarily used as a publication platform, all of the examples I've found so ...
0
votes
0answers
47 views
Making group-shared directories writeable with Python and os.umask
Currently the directory is
/var/www/html/sitename_com/. This directory is owned by meder.meder. Not sure under what umask I was when I created this dir.
My script is bound to pyinotify and after I ...
1
vote
1answer
24 views
How to modify Amazon Machine Image file permissions?
I had a nice and stable Ubuntu 12.04 Amazon Machine Image (AMI) and I was logging into my Amazon EC2 instance by using pem file (ssh -i dev.pem ubuntu@<instance_name>.compute-1.amazonaws.com). ...
0
votes
0answers
17 views
Download files only to authorized users
I'll create some CSV files and I'll wrote them in a folder inside my CodeIgniter application. I'm not sure if the files should be in a uploads/ folders or in some place where I can check credentials ...
1
vote
2answers
256 views
php chmod() not changing permissions
I am having problems with a picture uploading script.
I know there are hundreds of the same questions, but I haven't found the one that would be work for me.
$upload_dir = "images/postcards/";
...
1
vote
1answer
58 views
Uploading files with PHP results in permissions 600
We have a basic form which allows users to upload a file. The form has an <input type="file"> and after doing some validation we save the file like this:
if($file_upload) {
// this ...
0
votes
1answer
43 views
Permission problems with Gearman worker
Here is the scenario:
I have a web application (php, mysql) which writes pdf files to a given directory: /var/www/myapp/tmp. I then use Gearman (worker php script run from terminal) to generate ...
1
vote
1answer
82 views
No permissions to save QTP's Object Repositories on shared network folders
Whenever I try to save Object Repositories on my company's shared network folders, QTP complains by saying:
"You do not have the required permission to save in this folder. Do you want to save the ...
0
votes
0answers
147 views
chown / chgrp from php vs python
I have two users on Ubuntu, www-data and labor, both are in the group chiara.
Both users can do
>chown :chiara some_file
>chgrp chiara some_file
I have a python test.py script that uses
...
0
votes
0answers
47 views
Preserving permissions when resolving Mercurial conflict
I'm using a script for manually resolving conflicts as described here
http://mercurial.selenic.com/wiki/MergingManuallyInEditor
The problem I'm having is that the script doesn't preserve the ...
2
votes
3answers
238 views
Setting file permissions returns FALSE always
The code:
File dir = new File(path);
boolean rc1 = dir.setExecutable(true, false);
boolean rc2 = dir.setReadable(true, false);
boolean rc3 = dir.setWritable(true, false);
if (!rc1 || !rc2 || !rc3){
...
0
votes
2answers
77 views
ACL: How to check, or uncheck options
I add group in ACL for my folder, but I can't check/unchek options for it.
String account = @"HYPROSTROY\Все сотрудники";
FileSystemRights rights = FileSystemRights.FullControl;
// I have tried and ...
0
votes
1answer
97 views
Set permissions for directory and child items
My program to copy some directory, with subdirectories and files from server to local computer. I need, each local user can to modify it (edit/delete/remove/rename). But now it can do owner only. How ...
0
votes
3answers
2k views
Upload file wordpress
I am trying to upload a file in wordpress using the Media > Add New -- Option but when I click upload I get the following error:
Unable to create directory wp-content/uploads/2012/11. Is its ...
1
vote
3answers
143 views
Can I protect my CRON scripts from remote users?
I am currently working on a new project which involves using CRON jobs.
The CRON script basically runs an SQL query, generates the data into a file, and send that file to another server via FTP.
The ...
1
vote
2answers
316 views
C# - Cannot access all files
My application uses the .NET object Directory.GetFiles()
The actual overload I'm using is
var allFiles = Directory.GetFiles("C:\\Users\\Dave", "*.*", SearchOption.AllDirectories);
The issue is ...
1
vote
1answer
716 views
git fetch insufficient permssion for adding an object to repository database .git/objects?
In my repo in my home directory (on an Ubuntu box) I did
git fetch
I unfortunately got an error about:
insufficient permission for adding an object to repository database .git/objects
There's ...
1
vote
0answers
638 views
Restrict download and printing document from sharepoint document library [closed]
I am facing issue in giving a set of users such permission so that they can only view the documents but can't download and print those documents.
What I tried to do till now is : created a document ...
1
vote
2answers
95 views
difference between permisson on the directory
I have the following problem about permisson on the directory.
Actually I installed symphony2.0 and I get the following error:
RuntimeException: Unable to write in the cache directory
...
0
votes
1answer
52 views
Concrete5 - Warning: imagejpeg() [function.imagejpeg] [duplicate]
Possible Duplicate:
Has anyone come across this php error before, Warning: imagejpeg()?
I'm migrating a Concrete5 site to the live server and keep getting this error on some pages. Mainly ...
0
votes
0answers
132 views
Uploadify Permissions
Ok, I really need this fixed, and I have looked for hours. I have asked other questions and never gotten any help. Please, somebody help me understand what is going on here.
I am using uploadify to ...
0
votes
0answers
235 views
Create a user level 777 directory inside root directory /
I need to put the Dropbox folder inside the root path, this way:
cd /Dropbox
I can't create first a normal folder because Dropbox automatically creates a Dropbox folder nested in it...
so it would ...
0
votes
1answer
111 views
Creating directories from a web site
I am using .NET MVC3 to create a website. which will be used to make some file operations at server machine. Right now I am in development process so i didn't have it on IIS. I am working on Visual ...
0
votes
2answers
122 views
restricting application stored data access in disk using Linux user permissions
I'm developing a Java SE application that will run on Linux.
The application stores some files and directories on disk.
I need only the application itself be able to read/write these ...
2
votes
1answer
2k views
VB.NET app is setting restricted file permissions on a directory, which is incorrectly restricting user created files in the same directory
My VB.NET application builds a tree of directories with restricted access.
The access should be that a normal user can not delete or rename the existing tree. But the user can add new files/folders ...
0
votes
0answers
60 views
File permissions for local development
I have a folder in home home directory that i have symlinked into /var/www/mysite so I can access the site through apache. But keep the local files in my home folder.
What I want to do is have the ...
0
votes
1answer
234 views
Permissions denied for image upload
I'm trying to receive an image from a user and then upload it to my Amazon S3 account, but I'm getting the error Warning: move_uploaded_file(/items) [function.move-uploaded-file]: failed to open ...
2
votes
1answer
2k views
Git remote: error- 'remote:error: unable to unlink old 'filename_here' (permission denied)' after git push
For about 2 weeks now whenever I did a git push I would get about 200 errors reading this- remote:error: unable to unlink old 'wp-plugins/foobar.php' (Permission denied). But I could still push files ...
0
votes
2answers
429 views
ASP.NET Reading xml with FileStream (FileMode.Open) -> System.UnauthorizedAccessException
I have a website which reads settings from an xml config file (I'm using a .config extension). I open the file like so:
XmlSerializer xmlSerializer = new XmlSerializer(typeof(T));
using (Stream fs = ...
1
vote
2answers
2k views
How to allow writing to files via Apache and WebDAV
I am having trouble understanding how I can get to edit files on a WebDAV setup. I have set up the Auth correctly, as verified by loads of online tutorials, yet there are some files like .htaccess ...
0
votes
1answer
447 views
Git is changing my file's permissions when I push to server
I am using git to manage a website on a server.
I have a local repository shown below
local@workstation:myapp$ ls -l | awk ...
0
votes
0answers
122 views
Android - how to change the owner of a particular folder like /data/myfolder to an app's UID and set the writable permissions
Android : how to change the owner of a particular folder like /data/myfolder to an app's UID and set the writable permissions to 700 ?
Can this be done @ package manager . i guess that's where you get ...
0
votes
2answers
123 views
fwrite permissions for users of a webpage
I'm going to allow my users to make iframed HTML pages on my site. They will input text including markup and I will create the .html file using fwrite().
Are there reasons not to make the file ...
1
vote
2answers
773 views
Can't add file permissions need to relocate SQL Server 2012 files to separate drive
After installing a new SQL Sever 2012 Instance, I wish to move the database files to a separate drive. When I perform File->Properties on the target location and then click ...
0
votes
2answers
76 views
PHP file permissions for Development machine
I've just upgraded my development machine and have moved over a website I was working on. However, the permissions don't seem to have moved over properly. The dev machine is a Linux machine which ...
0
votes
1answer
259 views
Silverlight / server folder permissions
My Silverlight web site is supposed to let the client download a zip file. The zip contains two pdf files that are copied to a temp folder, plus a third pdf file created using crystal reports. On ...
1
vote
1answer
737 views
Use WordPress with folder permissions <= 750
My web hosting provider daily resets all folder permissions to 750, but since a few days, I'm having problems with uploading images inside wordpress. When change permissions of upload folders to 755, ...
0
votes
1answer
367 views
Upload files from one domain on another domain
I need that when a user uploads a file then the file gets stored on a folder on an another domain.
I need to upload files from one domain on another domain. From www.uploadto.com/ to ...
1
vote
1answer
164 views
NTFS Files Permissions in Java 6
It's possible to retrieve all permissions of a file in NTFS FileSystem with Java 6? I know in Java 7 it's very simple. Anyone know some framework to do that?
Thanks!
1
vote
1answer
228 views
make svn maintain the file permission
I have some scripts that are supposed to be executable. But after it is checked into svn and checked out in another location, they lose their executable permission. One has to chmod it again. Even if ...


