• I was having a problem with incoming links ending up on the blocked referrers list. I did some trial and error, and found that it was this line that was causing it
    inside the file incoming-links/front/cron.php

    if ((($size*8)/(1024*1024)<2) AND $body){ //Not bigger than 2MB and not empty

    I updated this line to be:

    if (($size < 2000000) AND $body){ //Not bigger than 2MB and not empty

    and now my referrers seem to work. You may want to up that even more. The pages linking to me were very large, and those were the ones failing.

  • The topic ‘Blocked referrers’ is closed to new replies.