Quote Originally Posted by skipwater View Post
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
Found that file, made the changes, got the same blank screen, it didn't come up with the file id or email address.

One thing I should note, is that you said that it should be on line 23, that started on line 64 for me.