Page 1 of 1
Posted: Wed May 13, 2009 2:35 pm
by Klemen
It wasn't designed for that but you can try installing LinkMan on domain1.com and in the settings set website URL, title and description for domain2.com so people will have their link posted on domain1.com but will be linking to domain2.com
Three way linking
Posted: Sat Dec 19, 2009 2:15 am
by Valhalla
I found more and more links requests were asking for non-reciprocal linking, or in other words the linking partner wanted to place my link back code on a domain other than the one contained in their link code.
The solution I found was to remove the comparison code from addlink.php
************************************************************
/* Compare URL and Reciprocal page URL */
$parsed_url = parse_url($url);
$parsed_rec = parse_url($recurl);
if ($parsed_url['host'] != $parsed_rec['host'])
{
problem('The reciprocal link must be placed under the same (sub)domain as your link is!');
}
**********************************************************
By doing this the form submission no longer checks URL/RURL for being the same domain.
So far I've found no issues, everything seems to work ok, and the link checker successfully checks the 'reciprocal'.
I haven't checked if the Page Rank function survives - I presume it does?
Cheers,
Ken.
Posted: Sat Dec 19, 2009 9:11 am
by Klemen
Should work as it's independent of other checks.