Quote Originally Posted by k9dug View Post
OK, csv file download problem solved.

There is an .htaccess file in the admin directory (or whatever you have named yours).

In there, by default, only certain file types are allowed in direct HTTP requests:
Code:
# but now allow just *certain* necessary files:
<FilesMatch "(^$|^favicon.ico$|.*\.(php|js|css|jpg|gif|png)$)">
  Order Allow,Deny
  Allow from all
</FilesMatch>
You just need to add "csv" in there too:
Code:
# but now allow just *certain* necessary files:
<FilesMatch "(^$|^favicon.ico$|.*\.(php|js|css|jpg|gif|png|csv)$)">
  Order Allow,Deny
  Allow from all
</FilesMatch>
I don't know if there is an instruction anywhere in the EP4 docs to alter this, or if this update should be part of the install process?...


Always a simple answer. Always a bugger finding it.
Hey K9!

Good catch! The other time I've seen this occur is when your config.php file has some extra slashes in the path directives. This sometimes happens with auto installer in cpanel.

I'll be sure to add your discover to the doc **when** I can get around to finishing them.

-chadd