Quote Originally Posted by MTODavid View Post
I did in fact have a blank line after the ?>, here are the steps I took:

1. I deleted the blank line, uploaded the download_fetch.php, created a new file to download, got the same blank screen after following link in email.
2. I then tried deleting the closing ?> and thank blank line, uploaded the download_fetch.php, created a new file to download, got the same blank screen after following the link in email.

I feel like I'm so close on this, any other ideas?
Locate this file:

/public_html/includes/modules/pages/fetch/header_php.php

Line 23 find:
Code:
$intDownloadId = $_GET['id'];
$strEmail = $_GET['email'];
Now for testing change to:
Code:
$intDownloadId = $_GET['id'];
$strEmail = $_GET['email'];

echo 'File ID '. $intDownloadId . '<br />';
echo 'Email '. $strEmail . '<br />';
exit();
When clicking on the emailed link this should show the file id and the email address. In the browser window.

Let me know Skip