Need a very complex Backlink control tool!

  • Yambot
  • Beginner
  • Beginner
  • User avatar
  • Joined: May 22, 2005
  • Posts: 50
  • Loc: Germany
  • Status: Offline

Post May 25th, 2005, 4:08 pm

Hi folk!
I will try to explain with my not perfect english!

When someone sign up to my site he/she must put a Backlink on his/her site(ok that is easy)

But i will control all users Backlinks from my site!

I need a tool that when a user sign up, that he must put a code on his site
and i will change the backlink sometimes on his site from my site!

But, i dont want do it with javascript cause the Bot will not follow the backlinks!

I think its not Possible but maybe here are really good coders!

THX and regards!
  • Anonymous
  • Bot
  • No Avatar
  • Joined: 25 Feb 2008
  • Posts: ?
  • Loc: Ozzuland
  • Status: Online

Post May 25th, 2005, 4:08 pm

  • Hacker007
  • Proficient
  • Proficient
  • User avatar
  • Joined: Apr 07, 2004
  • Posts: 366
  • Loc: Riverside, CA
  • Status: Offline

Post May 25th, 2005, 4:45 pm

Little more description an this might be possible. If you just want the link to change, all you have to do is have people put this where the link goes:

Code: [ Download ] [ Select ]
<script language="text/javascript" src="http://www.YOURSITE.com/link.js"></script>



and then on your site make a file called "link.js" and have in it:

Code: [ Download ] [ Select ]
document.write("<a href=\"WHATEVER\">Click Here</a>");



then edit that file to change the link on everyones site.
http://www.koolzone.net
  • Yambot
  • Beginner
  • Beginner
  • User avatar
  • Joined: May 22, 2005
  • Posts: 50
  • Loc: Germany
  • Status: Offline

Post May 25th, 2005, 5:02 pm

Quote:
But, i dont want do it with javascript cause the Bot will not follow the backlinks!


Thank you for your time but this way i dont want!
  • Hacker007
  • Proficient
  • Proficient
  • User avatar
  • Joined: Apr 07, 2004
  • Posts: 366
  • Loc: Riverside, CA
  • Status: Offline

Post May 26th, 2005, 6:16 am

is this your bot, or a search engine bot?

PHP Code: [ Download ] [ Select ]
 
#{Your users Web Page Code here}
 
 
 
//Start <!-- w --><span class="postlink">http://www.yambot.com</span><!-- w --> ad service
 
$code = file("http://www.yambot.com/link.php");
 
echo $code;
 
//End <!-- w --><span class="postlink">http://www.yambot.come</span><!-- w --> ad service
 
 
  1.  
  2. #{Your users Web Page Code here}
  3.  
  4.  
  5.  
  6. //Start <!-- w --><span class="postlink">http://www.yambot.com</span><!-- w --> ad service
  7.  
  8. $code = file("http://www.yambot.com/link.php");
  9.  
  10. echo $code;
  11.  
  12. //End <!-- w --><span class="postlink">http://www.yambot.come</span><!-- w --> ad service
  13.  
  14.  


then make a file, "link.php"

Code: [ Download ] [ Select ]
<!--// Code for yambot.com ad //-->
<a href="www.yambot.com">Yambot</a>
  1. <!--// Code for yambot.com ad //-->
  2. <a href="www.yambot.com">Yambot</a>



That should work if your users have php enabled.
http://www.koolzone.net
  • Yambot
  • Beginner
  • Beginner
  • User avatar
  • Joined: May 22, 2005
  • Posts: 50
  • Loc: Germany
  • Status: Offline

Post May 26th, 2005, 6:24 am

Wow thank you!
I will test it today and report it here!
Tanks Hacker007
  • Yambot
  • Beginner
  • Beginner
  • User avatar
  • Joined: May 22, 2005
  • Posts: 50
  • Loc: Germany
  • Status: Offline

Post May 26th, 2005, 7:01 am

OK!
I have tested in my domain where is php enabled!
i have this here saved in a blank link.php
Code: [ Download ] [ Select ]
<?
<a href="http://www.yammba.com">Yammba suche</a>
?>
  1. <?
  2. <a href="http://www.yammba.com">Yammba suche</a>
  3. ?>

and uploaded

Then i have this here saved in a blank advertise.php
Code: [ Download ] [ Select ]
<?
$code = file("http://www.yammba.com/link.php");
 echo $code;
 ?>
  1. <?
  2. $code = file("http://www.yammba.com/link.php");
  3.  echo $code;
  4.  ?>

but no function, whats the error?
http://www.yammba.com/advertise.php
  • Hacker007
  • Proficient
  • Proficient
  • User avatar
  • Joined: Apr 07, 2004
  • Posts: 366
  • Loc: Riverside, CA
  • Status: Offline

Post May 26th, 2005, 9:51 am

Okay, first, in your link.php just have:

Code: [ Download ] [ Select ]
<a href="http://www.yammba.com">Yammba suche</a>



Then try using this as your code in advertise.php:

PHP Code: [ Download ] [ Select ]
<?
 
$code = file_get_contents("http://www.yammba.com/link.php");
 
echo $code;
 
?>
  1. <?
  2.  
  3. $code = file_get_contents("http://www.yammba.com/link.php");
  4.  
  5. echo $code;
  6.  
  7. ?>


if that doesn'twork, try puting this in advertise.php:

PHP Code: [ Download ] [ Select ]
<?php
 
 
 
#Begin Ad Service
 
 
 
$lines = file("http://www.yammba.com/link.php");
 
 
 
   foreach($lines as $lineFeed)
 
   {
 
      echo $lineFeed;
 
   }
 
 
 
#End Ad Service
 
 
 
 
 
?>
  1. <?php
  2.  
  3.  
  4.  
  5. #Begin Ad Service
  6.  
  7.  
  8.  
  9. $lines = file("http://www.yammba.com/link.php");
  10.  
  11.  
  12.  
  13.    foreach($lines as $lineFeed)
  14.  
  15.    {
  16.  
  17.       echo $lineFeed;
  18.  
  19.    }
  20.  
  21.  
  22.  
  23. #End Ad Service
  24.  
  25.  
  26.  
  27.  
  28.  
  29. ?>
http://www.koolzone.net
  • Yambot
  • Beginner
  • Beginner
  • User avatar
  • Joined: May 22, 2005
  • Posts: 50
  • Loc: Germany
  • Status: Offline

Post May 26th, 2005, 10:04 am

Hey Thank you Hacker007 it works!

Now i can use it for users with php, thats a good solution for me!

Is there a solution for html? I think only javascript will do this work but maybe someone knows more......

Thanks again Hacker007
  • Hacker007
  • Proficient
  • Proficient
  • User avatar
  • Joined: Apr 07, 2004
  • Posts: 366
  • Loc: Riverside, CA
  • Status: Offline

Post May 26th, 2005, 2:59 pm

HTML wouldn't be able to do it, because HTML can't minupulate anything outside its own document.
http://www.koolzone.net
  • Yambot
  • Beginner
  • Beginner
  • User avatar
  • Joined: May 22, 2005
  • Posts: 50
  • Loc: Germany
  • Status: Offline

Post May 26th, 2005, 3:18 pm

:(
  • Hacker007
  • Proficient
  • Proficient
  • User avatar
  • Joined: Apr 07, 2004
  • Posts: 366
  • Loc: Riverside, CA
  • Status: Offline

Post May 26th, 2005, 3:28 pm

Now that i think about it. You may have an HTML solution, but i would suggest against it. Using an iframe:

Code: [ Download ] [ Select ]
<iframe src="http://www.yammba.com/link.php"></iframe>


then in link.php:
PHP Code: [ Download ] [ Select ]
echo "<a href=\"http://www.yammba.com\" target=\"_top\">Yammba</a>";
http://www.koolzone.net
  • Crea
  • Novice
  • Novice
  • No Avatar
  • Joined: May 05, 2005
  • Posts: 32
  • Status: Offline

Post May 26th, 2005, 3:47 pm

I personally, wouldn't use the iframe link back... I'd be forced to change my doc type from xhtml strict to frameset blahtever if I was concerend about validation.

Very good idea though.

Oh, yeah, for an html way, there is of course the 'put my image on yoursite and link back...'

Code: [ Download ] [ Select ]
<a href="http://site-name.com" title="Visit Site-name now!"><img src="http://site-name.com/images/link-back.jpg" width="88" height="31" border="0" alt="this is an image that links off site" /></a>


Since your site-name isn't going to be changing all the time, all they have to do is copy that and past it into their site... and then if you want to alter their page.... just have to alter the link-back.jpg and replace the oldone with a new one.

keeping in mind this also means that you can have mulltiple images for multiple sizes... though-- also best bet to make the images universal. Ideal for any tipe of back ground. (if at all possible)[/code]
  • Yambot
  • Beginner
  • Beginner
  • User avatar
  • Joined: May 22, 2005
  • Posts: 50
  • Loc: Germany
  • Status: Offline

Post May 27th, 2005, 5:12 am

Thank you for the solutions my friends!

Post Information

  • Total Posts in this topic: 13 posts
  • Users browsing this forum: Bozebo, cleartango and 405 guests
  • You cannot post new topics in this forum
  • You cannot reply to topics in this forum
  • You cannot edit your posts in this forum
  • You cannot delete your posts in this forum
  • You cannot post attachments in this forum
 
 

© Unmelted Enterprises 1998-2009. Driven by phpBB © 2001-2009 phpBB Group.