I have updated the package with the changes and a few minor typo changes to the install.txt file. I have added the file link_checkurl.php to fix the issue you were speaking of. I have added the steps listed below to the install.txt file in step 10 and moved the database and final steps to 11 & 12. If you want you can download the updated package and follow step 10, download the package and install the file IndexU\indexu_5_4_0\upload\admin\link_checkurl.php , or follow these steps.
Open IndexU\indexu_5_4_0\upload\admin\link_checkurl.php and find this line (40):
Code:
where live = 'N' or reciprocal_found = 'N'";
and replace it with this:
Code:
where live = 'N' or reciprocal_found = 'N' or alt_reciprocal_found = 'N'";
Then, find this line (45):
Code:
concat(a.url, ' (Live : ', b.live, ', Reciprocal Found : ', b.reciprocal_found, ')') url
and replace it with this:
Code:
concat(a.url, ' (Live : ', b.live, ', Reciprocal Found : ', b.reciprocal_found, ', Alternate Reciprocal Found : ', b.alt_reciprocal_found, ')') url
You are done. Test it out and let me know how it works.