0
votes
0answers
9 views

configuration permission folder apache

I'm configuration my apache server and i'm give permissions the folder /var/www/web. chown -R www-data:root web chmod -R 570 web chmod -R 444 $(find web -type f) is correct this configuration??
1
vote
0answers
20 views

Permission error - cannot delete uploaded files from FTP

I have found several posts asking similar questions however this situation is different. In my upload class I'm creating a directory from a user's id with mkdir, then calling move_uploaded_file to ...
-1
votes
0answers
14 views

Sites folder permission denied [closed]

I have just set up php54 from Jose Gonzales brew. Apache shows "It works" in localhost but i am denied access to localhost/~username/Sites I have httpd.conf set with: Options Indexes ...
0
votes
0answers
14 views

Desperate with Apache2 and cgi (Ubuntu 12.04). Help :(

m having an issue installing apache2 in Ubuntu 12.04. Im trying to set the cgi-bin folder in the path /home/www/cgi-bin. Ive followed and search all over the internet but I still dont get it... ...
0
votes
2answers
44 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
26 views

Best practice: Files/Folders permission/owner in symfony2

The symfony2's kernel needs to write in the cache ( as the http user ). I also need to read/write into the folder for these reasons: The IDE needs to read/write/create in document root In shell my ...
0
votes
0answers
30 views

PHP Script being treated as Public in terms of permission

I have a php script that scans my filesystem for text files and minifies them, using my own method of creating a backup (file.txt.bak), minifying the text, then saving the file. My script is being ...
1
vote
0answers
30 views

chmod seems to have no effect on php files or clarifying permissions handling

I recently switched from using .shtml files for my webpages to using .php files. After figuring out how PHP handles directories, everything seemed to work fine. That is until I realized file ...
0
votes
1answer
39 views

770 permissions on file in apache root, still viewable

I've seen a lot of questions on here regarding files not being accessible due to permissions with LAMP but nothing about making files unviewable by the http client using permissions. I have files and ...
0
votes
2answers
33 views

How to set file permissions for root in OS X / Terminal?

I'm having issues with getting Apache working with my virtualhosts, and I've narrowed it down to the fact that I'm adding manually-created virtual hosts (vs. the others which are created by a python ...
-1
votes
0answers
20 views

Server showing permissions on top of the page

I'm experiencing issues with the display of my website. Can anyone see the permission remarks on this page. The link below is not my project, but showing very similar results on the top of the page. ...
-1
votes
0answers
15 views

Mount and write Ubuntu SMB Share through Apache/PHP [closed]

I have a basic shared folder on a desktop that I want everyone to have 100% read/write to it. I can set this up, and use a mac to connect and mount the folder but logging in as the ubuntu user. So the ...
0
votes
1answer
44 views

PHP / Apache File Write Permissions without 777

I'm trying to avoid 777 permissions for a directory that handles file uploads on a Linux server. PHP/Apache must be able to write to this particular directory, but I don't want to make it ...
0
votes
1answer
35 views

result of sys_get_temp_dir() not writable by Apache process's user

I've been working with Assetic and YUICompressor to minify and concat js/css. I'm having a problem figuring out the correct write permission working on my local testing environment and the result of ...
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
67 views

Fedora file permissions apache no write acces

I spend hours on finding out how to gain file permissions for my apache installation in Fedora 18. I did the following without any luck: httpd.conf (restarted it afterwards) DocumentRoot ...
-2
votes
1answer
45 views

Php, Function mkdir() permission denied

I want php to create a folder that can store images for a user. So when someone succesfully creates an account a directory is created in the Images folder. I used the php mkdir function to create the ...
0
votes
1answer
44 views

Trying to give permission to Apache on Dropbox folder via Alias on Windows

Im trying to setup a alias to dropbox using Xampp on windows 7. I gave recursive full access permission to "Everyone" on C: and D: but I'm still getting a 403 Forbidden error on apache. Dropbox is ...
0
votes
1answer
31 views

Use the RewriteEngine to direct away from a denied directory

The setup root/ .htaccess : Deny from All RewriteEngine On RewriteRule secret.txt /root/public/welcome.txt secret.txt public/ .htaccess : Allow from All welcome.txt The problem A ...
0
votes
2answers
31 views

symfony2 cache/log permission issues

I've just uploaded a simple symfony2 app on a production server, and I get this configuration error: 2 MAJOR PROBLEMS Change the permissions of the "app/cache/" directory so that the web server can ...
0
votes
1answer
63 views

Apache multiple virtual hosts user permissions

I have webmin installed where I create new virtual hosts and new users to manage those sites. My process is: Create a new user. (/home/nameofuser/) SSH in as the new user, and create a webroot ...
0
votes
2answers
58 views

Executing curl image download from browser load

I have a php curl script which downloads an image from a specified url. Save image from url with curl PHP function grabImage($url, $saveto){ $ch = curl_init ($url); curl_setopt($ch, ...
0
votes
1answer
88 views

Apache 403 Forbidden problems with certain folder only on DocumentRoot

I am receiving 403 Apache Forbidden errors when I set my documentroot in: C:\Google%20Drive\public_html But it works ok when I put C:\public_html I think the problem is due Windows folder ...
0
votes
2answers
54 views

Unable To Open Files On New Intranet Site

I have recently switched a PHP based intranet site from an Apache server to a server running IIS7. I have installed PHP to the server and everything (as far as I can tell) is working properly with ...
0
votes
1answer
116 views

access denied in debian guest apache using a windows share

This is a complicated (for me, at least) problem, so please bear with me. I have three virtual machines with assorted guest operating systems (listed below) running in VirtualBox 4.2.10, all running ...
0
votes
5answers
84 views

Can't save file with other permissions except for 777

I have a script that resizes images and then save the new images. I can't save the new image if the original image didn't have 777 permissions. I know that 777 is risky, so when using different ...
0
votes
1answer
42 views

How to avoid user/perms headaches on VPS web server?

I'm using a VPS for the first time and I'm wondering the best way to set up this server that makes sense and has as little effort with permissions setting as possible. So I use /var/www (all files ...
1
vote
0answers
24 views

Global file access with suPHP

I need users to have read only access to global files. Currently I add a symlink to the global files into the user directories. This seems to work until I access a file within the symlinked directory. ...
0
votes
1answer
21 views

Directory Apache server permissions

The function "is_writeable" of php it returns false, then the directory that im proving have the next permissions 755 owner and the root group. To make it run i put chown www-data -R /var/www/myweb. ...
0
votes
0answers
886 views

htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/files/domain.com/public_html/images/' is executable

Today i migrated my images from one server to another and faced a strange permission issue [Mon Mar 25 08:42:23.676315 2013] [core:crit] [pid 15182] (13)Permission denied: [client 24.14.2.22:48113] ...
0
votes
0answers
62 views

htaccess password protecting single file. I still get password prompt on other files

Below is my htaccess file. 2 things are happening here. In the first part of the code I make sure server is in https. In the second part filesmatch I want to password protect one file. This works as ...
0
votes
1answer
288 views

Forbidden error when accessing wamp from local network

Okay now, this problem has been driving me crazy for a week! I hope we will find a solution together. I am trying to configure my wamp server to run on a local network (be accessable from a local ...
0
votes
1answer
29 views

How do I give permission for apache to retrieve imgs from directory?

I'm using fedora and I need to set up apache so that it can retrieve images from a directory. So far it can write to my image directory since sending the command ... semanage fcontext -a -t ...
0
votes
0answers
98 views

Copy files from Windows PC using PHP script on Ubuntu

I am trying to copy files located on a Windows 7 PC (eg: \server\path1\file.txt) to another location on the same Windows 7 PC (eg: \server\path2\file.txt) using a PHP script located on a Ubuntu server ...
1
vote
2answers
153 views

PHP Photo Uploads - upload_tmp_dir permissions

I'm using the following directory for php.ini photo uploads on apache - redhat/AWS drwxrwxr-x 2 user2 user2 4096 Mar 4 08:10 datingPhotoUploads Apache is running as the user 'apache'. How can I ...
0
votes
0answers
46 views

Apache server file permissions for python program

I have a strange problem with my site. To begin with i have a site that collects some data, then stores them in a MySQL database and then a Python program is called. While everything runs fine the ...
0
votes
2answers
72 views

permission denied on www folder

I have created a directory in my www folder using terminal and root user. Then, create some text files in that folder. (with terminal and root user) Now, when I want to access these files and ...
0
votes
0answers
148 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 ...
2
votes
2answers
89 views

Why do apache owned files get created by wordpress?

I get this problem now and then, where I use an FTP account given to me by the host and use them in Wordpress FTP. But for some reason when updating themes for example, the new theme gets created ...
0
votes
1answer
85 views

How can i deploy a PHP web application in subdomain using .htaccess permission

I have deployed a PHP web application on my host (root of my host) now i want to install a web analytic php web application in a folder called "stat" (in the root of my host as a sub domain) but ...
0
votes
2answers
135 views

How to access a file from URL using Curl

-rw-r--r-- 1 root root 514 Jan 15 04:03 curl.php -rw-r----- 1 root root 1344 Feb 5 02:09 dbm-config.ini -rw-r--r-- 1 root root 5149 Feb 5 02:19 ...
2
votes
1answer
127 views

mod_security - IP access Issue

I'm trying to access my website using it's IP address, earlier it was working fine. But after I installed and configured mod_security and mod_security OWASP, Apache is giving out 403 error. ...
0
votes
1answer
508 views

Solving 403 permission denied error on Apache even after Allow From All and Chmod 777?

My DocumentRoot is in ~/Dropbox/Websites. It's set up as Allow From All and AllowOverride All in the vhosts and in httpd.conf, and I've even put 777 permissions on the entire DocumentRoot recursively ...
0
votes
1answer
62 views

Moving Lampp htdocs

I have installed Lampp on Ubuntu 12.04LTS. I tried to move my htdocs to home/myusername/lampp/htdocs by editing both DocumentRoot values in httpd.conf. After doing so I get Access Forbidden on all ...
0
votes
0answers
23 views

Apache Denying Access to Directory [closed]

I just added a directory to my document root and Apache keeps denying me when I try to view it in the browser. Even logged in as root. I to a look at the config file but I'm new to Apache ...
1
vote
0answers
43 views

Apache server disallow php open of files in upper directories

I have server seciurity problem. Problem is virus that spreads from one of weakly programmed sites on server. directory structure is as follows (DirectAdmin): domains -domain1.com --public_html ...
0
votes
0answers
28 views

Unable to identify apache user on Solaris

For my work we're deploying an svn manager web service, but I can't get the apache user to have permissions to the svn directory. chmod 777 did not work.... Where is the apache user located? In my ...
0
votes
1answer
80 views

Apache/WSGI process dying

I recently have changed the server for some Django/Python sites and immediately I got into trouble. My Apache instance or the WSGI daemon simply dies! No logs, no warnings or errors. I have to restart ...
3
votes
1answer
60 views

restricting filesystem rights to apache/php for anything but logging operations

Hello and merry Christmas, I've got a wonder. My need is to allow the creation of custom log files and folders through php, however I don't want the php script to be able to execute any unlink or ...
1
vote
1answer
925 views

You don't have permission to access /project on this server

I have this problem: "You don't have permission to access /project on this server." And, what makes me feel trouble is that, here in terminal: sol@Sol-MacMini /Library/WebServer/Documents>sudo ln ...

1 2 3 4 5