The Arcive of vBulletin Modifications Site. |
|
URL Cloak for SEO Details »»
|
|||||||||||||||||||||||||||||
SEO, Privacy, Encryption, Redirect, Invest and Affiliate Link Cloaker of URL inside your posts.
Features:
Installation:
That's it. Surf your posts to see how your in-post links look like. See test site http://forum.letsfx.com Download Now
Screenshots
Show Your Support
|
|||||||||||||||||||||||||||||
| Благодарность от: | ||
| sodasusu | ||
| Comments |
|
#2
|
|||
|
|||
|
Installed exactly as described, but doesnt change my urls in posts.
Double checking everything again. Question,... are there long term PR results that have been experienced? |
|
#3
|
|||
|
|||
|
OK,.... you might want to tell everyone they have to edit the php file and replace the 2 url's that will redirect everything to your website.
Also, you left out the Code:
include_once('./letsw.php');
//=================
Still havent got it to work yet properly. Page opens up but it never redirects to the link source, just ends up on my homepage. |
|
#4
|
|||
|
|||
|
It is working just fine with me see example here:
http://forum.letsfx.com/showthread.p...=7216#post7216 Here you find link to external site with words "Legal Documents". My plugin code replace url automatically through j.letsw.com (free global service). This helps me for 5 months to get PR3 because google bot will not see many external links from your site else one global free service (j.letsw.com) Let me know your site name to help you solve your problem Best, |
|
#5
|
|||
|
|||
|
I have been to your site and I see it working.
BUT,.. the php code MUST be edited to replace the j.letsw.com in lzoo_white and the user must also replace the link in $eurl = string. Additionally I had to add the include_once statement above that was not in the code box in instructions, but was in the image screenshot. After that the url structure on my site was as intended for posted links, but when clicked on the redirect never occurs. Just a pop-up that retains my website as the ?url never gets redirected to. Thats pretty much it tho. |
|
#6
|
|||
|
|||
|
You are right about include code I forgot:
include_once('./letsw.php'); But no any changes required on file included. Use original one from here again and let me know. |
|
#7
|
|||
|
|||
|
OK,...just downloaded another copy and this is what I get...
Code:
<?php
function letsw_text($text){
$lzoo_white = array('letsw.com'); // TODO: ADD HERE SITES TO EXCLUDE OF CLOAK
$lzoo_white[] = $_SERVER['HTTP_HOST'];
//global $vbulletin;
//$userid = $vbulletin->userinfo[userid];
$p = strpos($text, '<a ');
while($p!==false){
$p1 = strpos($text, 'href',$p);
if($p1!==false){
$p2 = strpos($text, '"',$p1); if($p2!==false) $p2 = strpos($text, '"',$p2+1);
if($p2!==false && $p2-$p1<200){
$url = substr($text,$p1,($p2-$p1)+1);
$link = substr($url,strpos($url,'"')+1,-1);
$ignore=false;
foreach($lzoo_white as $val)
if(strlen($val)>1) if(strpos($url,$val)!==false) $ignore = true;
$eurl = 'href="http://j.letsw.com/?'.(str_replace('"','',str_replace('href=','',$url))).'"';
if(!$ignore && (strpos($url,"http://")!==false || strpos($url,"https://")!==false) )
$text = str_replace($url, $eurl, $text);
}
}
$p = strpos($text, '<a ',$p+5);
}
return($text);
}
?>
|
|
#8
|
|||
|
|||
|
This is correct. Just copy it to your forum root by FTP.
PM me if you want |
|
#9
|
|||
|
|||
|
No, lets hash this out here.
I tried it for a second before disabling it, because on my site I dont want any hidden url's in links that arent mine. Am I missing something here? |
|
#10
|
|||
|
|||
|
Quote:
For me and many friends use this way to hide external links from search bots to raise page rank. Best, |
![]() |
|
|
| X vBulletin 3.8.12 by vBS Debug Information | |
|---|---|
|
|
More Information |
|
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|