Hi
I have a problem with one domain in my client where is installed SilverStripe.
When user create folder by this script and upload files then this folder change user and group for apache:apache, should be user:user. I try to understand why but I couldn't.
All files changed for user and group user:user.
In main folder this domain is file .htaccess with:
but i don't see problem with this.
I have a problem with one domain in my client where is installed SilverStripe.
When user create folder by this script and upload files then this folder change user and group for apache:apache, should be user:user. I try to understand why but I couldn't.
All files changed for user and group user:user.
In main folder this domain is file .htaccess with:
Code:
### SILVERSTRIPE START ###
<IfModule mod_dir.c>
DirectorySlash Off
</IfModule>
<Files *.ss>
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Files>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !(\.gif)|(\.jpg)|(\.png)|(\.css)|(\.js)|(\.php)$
RewriteCond %{REQUEST_URI} ^(.*)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* sapphire/main.php?url=%1&%{QUERY_STRING} [L]
</IfModule>
### SILVERSTRIPE END ###
but i don't see problem with this.
Last edited: