
Originally Posted by
pubaolao
Hi, I have a problem when I import a CSV-file using "EasyPopulate 4 Master", and I want to download the file, I get following error message:.
"Forbidden
You don't have permission to access /admin/temp/Full-EP2017Jun20-205456.csv on this server.
3 things to check.
1. Admin -> Configuration -> Easy Populate 4: Uploads Directory
- make sure it shows: temp/
2. /admin/temp/
- make sure permissions are 755 for the 'temp' dir.
3 /admin/temp/.htaccess file
- add the following at the bottom
Code:
# allow access to just *certain* necessary files:
<FilesMatch "(?i).*\.(csv|CSV|txt|TXT)$">
<IfModule mod_authz_core.c>
Require all granted
</IfModule>
<IfModule !mod_authz_core.c>
Order Allow,Deny
Allow from all
</IfModule>
</FilesMatch>
Bookmarks