I just installed this and everything is working fine except for the downloading of the file from the email link.
When I tested it, I clicked on the link that was emailed and received the error message HTTP 500.
After reviewing some of the posts, I found the following instructions:
Find file /includes/modules/pages/fetch/header_php.php and about line 60 you will see.
PHP Code:
// Is Apache trying to compress the output:
@apache_setenv('no-gzip', 1);
@ini_set('zlib.output_compression', 0);
Change to look like this.
PHP Code:
// Is Apache trying to compress the output:
// @apache_setenv('no-gzip', 1);
// @ini_set('zlib.output_compression', 0);
I made the change and now the download box opens and along with another box with the error message:
Internet Explorer cannot download index.php from mysite.com. Internt Explorer was not able to open this Internet site. The requested site is either unavailable or cannot be found.
What am I missing?
Bookmarks