Page 1 of 1

Affiliate link script... Where can I find one?

Posted: Mon Mar 31, 2003 11:02 pm
by adizlaja
Hello,

I run ( http://www.soccergrip.com ). I wanted to know if anyone had any idea where I could find a script like at: http://www.bigsoccer.com/network/ for free. It is very similar to the scripts like on top 100 pages etc...

Any help would be greatly appriciated!

Thanks! :D

Posted: Tue Apr 01, 2003 2:21 am
by twigletmac

Posted: Tue Apr 01, 2003 6:40 pm
by adizlaja
I cant find any decent script for free. I tried one but couldn't install it... let me re-explain what I need.

I want a script like on http://www.bigsoccer.com/network/ that allows people to add their site to mine with only text or maybe a little button. Once they sign up and add their site I want it to not appear until they add my button to their site. Is that possible?

Posted: Tue Apr 01, 2003 6:56 pm
by volka
isn't http://www.hotscripts.com/PHP/Scripts_a ... Top_Sites/ dedicated only to scripts of that kind? Many of them are for free.

e.g. you might periodically load the pages (via php) and check wether it contains the mandatory code-snippet ( 24/48/N a day at a random pattern).

Posted: Tue Apr 01, 2003 7:32 pm
by adizlaja
I dont think a top list can be set to work like this...

When someone adds their site to my list... they must add a link or button from my site for theirs which is given once they submit their site to my toplist and then they are listed by me..

Do you guys understand what I mean? :lol:

Posted: Tue Apr 01, 2003 7:54 pm
by volka
you want a toplist but toplist-scripts do not apply?
If you want to be sure that your code-snippet is on the other page you (or a script) have to check that page from time to time.
Have I missed something? ;) ( really might be, it's 4am 8O )

Maybe you want exactly the script used at bigsoccer.com, if so you might ask them...

edit: esp. http://www.hotscripts.com/Detailed/7783.html sounds appropriate
phplinkexchange is a open source project to try to create a free, powerful link exchange script. phpClickXchange will monitor how much traffic a site is sending you. phpClickXchange will then generate "Affiliate/Associate" lists, which can be placed through PHP or SSI right into your page, placing the site which sends you the most hits in the best position, while placing the site which sends you the least hits in the worst position, maximizing the potential of your linkexchange and preventing cheating of any sort to exist.
(although not 100% matching your description)

Posted: Tue Apr 01, 2003 8:06 pm
by adizlaja
Ok let me rephrase myself.

I want a script that LOOKS like http://www.bigsoccer.com/network/

However, when someone clicks "Add my site," they fill out a form with some information.

Then, when they complete the join form and hit submit. I want the script to give the submitor some HTML code that they MUST insert somewhere on their site before their site is listed on my list.

Maybe, when they submit and see the code, I can go into admin and then see their site if they added my button and I confirm that they can be inserted in my list.

Understand? :cry:

Posted: Thu Apr 03, 2003 11:23 pm
by adizlaja
Whats the best, free TOP 50 or so script.. something similar like the other site?

Posted: Fri Apr 04, 2003 1:28 am
by twigletmac
Having never used a free Top 50 or so script I can't answer your question but I would like to point out that this isn't a 'find-me-a-script' service. If you come to us with problems with a script that you are trying to customise and write then we are more than happy to help you but if you're just looking for an off-the-shelf-works-exactly-as-you-want-immediately script then you're going to have to just go to somewhere like hotscripts download a whole bunch and try them. Places like hotscripts also have ratings on scripts so that's probably the best thing to look at to judge how good others think they are.

The other thing to do of course is to write it yourself so it does exactly what you want, or hire someone to do it for you.

Mac

Posted: Mon Apr 07, 2003 11:16 pm
by adizlaja
I have a problem on http://www.soccergrip.com/catalog/affiliate.php

I want to remove the "recommended" table but I dont know how.
Also, I need help removing variables... for example.. I cant remove this..

<p align=center>Copyright (c) 2002 - <a href=" . $homepageurl . " target=_blank>" . $homepagename . "</a><br><br><font size=1>Powered by <a href=http://besttoplist.sourceforge.net/html>Best Top List</a> by Szymon Kosok v. $version</font><br><br>";

It gives me a parse error if I do..
Please help.

Posted: Tue Apr 08, 2003 1:23 am
by m3mn0n
Can ya hook me up with a deal on a AC Milan jersey? ;) :wink: hehe...

I would kill for this. 8)

Code: Select all

<p align=center>Copyright (c) 2002 - <a href=" . $homepageurl . " target=_blank>" . $homepagename . "</a><br><br><font size=1>Powered by <a href=http://besttoplist.sourceforge.net/html>Best Top List</a> by Szymon Kosok v. $version</font><br><br>";
turn that into this...

Code: Select all

<p align=center>
Copyright (c) 2002 - 
 <a href="yoursite" target=_blank>yoursite's name</a>
   <br><br>
     <font size=1>
       Powered by <a href=mailto:youremail>you</a>
     </font>
   <br><br>
</p>
enjoy.