and you want to run a check but without automatically deleting the sites, because you might want to give them one more week to catch up.
Here's my easy fix:
open index.php (the admin page) with a text editor
find:
Code: Select all
echo "<br>\n<font color=\"#FF0000\">LINK NOT FOUND!</font><br><br>\n\nRemoving link ...<br>";
unset($lines[$i-1]);
$rewrite=1;
Code: Select all
echo "<br>\n<font color=\"#FF0000\">LINK NOT FOUND!</font><br><br>\n\nShould Remove link<br>";
unset($lines[$i-1]);
$rewrite=0;

you can now check links, dead ones wont automatically be removed,
BUT you can still manually remove them by clicking the red [X]


Now for my Hard Fix....
make a copy of the file index.php
rename it to no_del.php
open with text editor
find / replace all instances of index.php with no_del.php
also do code change above
upload to server
test
now you have 2 admin pages, the original one to use for auto deletes
and the new one for no auto deletes


