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
Bookmarks