I just downloaded the site files, and when i started to install it said to me
Uh oh, a problem occured!|
Please make following files/folders writable
sites/default/config.php
sites/default/assets/img/attachments/
sites/default/assets/img/cats/
sites/default/assets/img/cats/icons/
sites/default/assets/img/profiles/
sites/default/assets/img/profiles/icons/
sites/default/assets/img/smileys/
cache/
I don't understand any of this stuff but I think it has to do with htaccess, this is what i have in it:
<IfModule mod_rewrite.c>
Options +FollowSymlinks
Options +Indexes
RewriteEngine on
# if your app is in a subfolder
#RewriteBase /my_app/
# test string is a valid files
RewriteCond %{SCRIPT_FILENAME} !-f
# test string is a valid directory
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^(.*)$ index.php?u=/$1 [NC,L,QSA]
# with QSA flag (query string append),
# forces the rewrite engine to append a query string part of the
# substitution string to the existing string, instead of replacing it.
</IfModule>
AddType text/css .less
AddType image/svg+xml svg svgz
AddEncoding gzip svgz
<IfModule mod_deflate.c>
<FilesMatch ".(js|css|html|php|txt)$">
SetOutputFilter DEFLATE
</FilesMatch>
</IfModule>
How do i fix this?
I just downloaded the site files, and when i started to install it said to me
````
Uh oh, a problem occured!|
Please make following files/folders writable
sites/default/config.php
sites/default/assets/img/attachments/
sites/default/assets/img/cats/
sites/default/assets/img/cats/icons/
sites/default/assets/img/profiles/
sites/default/assets/img/profiles/icons/
sites/default/assets/img/smileys/
cache/
````
I don't understand any of this stuff but I think it has to do with htaccess, this is what i have in it:
````
&lt;IfModule mod_rewrite.c&gt;
Options +FollowSymlinks
Options +Indexes
RewriteEngine on
# if your app is in a subfolder
#RewriteBase /my_app/
# test string is a valid files
RewriteCond %{SCRIPT_FILENAME} !-f
# test string is a valid directory
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^(.*)$ index.php?u=/$1 [NC,L,QSA]
# with QSA flag (query string append),
# forces the rewrite engine to append a query string part of the
# substitution string to the existing string, instead of replacing it.
&lt;/IfModule&gt;
AddType text/css .less
AddType image/svg+xml svg svgz
AddEncoding gzip svgz
&lt;IfModule mod_deflate.c&gt;
&lt;FilesMatch ".(js|css|html|php|txt)$"&gt;
SetOutputFilter DEFLATE
&lt;/FilesMatch&gt;
&lt;/IfModule&gt;
````
How do i fix this?