eXceem

Go Back   eXceem > The Recycle Bin > Old Forums > Wiki Discussions

Claim your amazing £1,000 slots booster bonus now!


Link Directory

This is a discussion on Link Directory within the Wiki Discussions forums, part of the Old Forums category; Discussion thread for Link Directory . If you would like to add a comment, click the Post Reply button....

 
 
Thread Tools
Old 01-05-07, 09:13 PM   #1
iPod Nano 4GB
 
panteramad's Avatar
 
Join Date: Apr 2007
Location: Bath
Posts: 370
panteramad is an unknown quantity at this point

Link Directory


Discussion thread for Link Directory. If you would like to add a comment, click the Post Reply button.
 
Old 01-05-07, 09:35 PM   #2
iPod 20gb
 
Join Date: Jan 2007
Posts: 480
DaveVII will become famous soon enough

Re: Link Directory


only got 16ish replies...not really enough to warrent a huge effort as of yet. Still waiting for a few people to get back to me.

Also been looking into freeware software that could do all the scripting for me, but it requires that everybody install it on their ftp server, which might be askign a bit too much.

Anyway, still trying to think of the best way of doing this. any ideas welcome!
 
Old 01-05-07, 11:39 PM   #3
iPod 20gb
 
Landy's Avatar
 
Join Date: Mar 2007
Location: Brentwood
Posts: 757
Landy is a jewel in the rough

Re: Link Directory


I'll have a think, see if I can write something, the issue is keeping it up-to-date on everyones webservers.

If i can think of a way round that it'll be a piece of p***
 
Old 02-05-07, 02:05 PM   #4
Interclickz Support
 
woostar's Avatar
 
Join Date: Aug 2005
Posts: 1,353
woostar is on a distinguished road

Re: Link Directory


Quote:
Originally Posted by Landy View Post
I'll have a think, see if I can write something, the issue is keeping it up-to-date on everyones webservers.

If i can think of a way round that it'll be a piece of p***
$clone = file_get_contents("http://www.domain.com/directory");
echo $clone;

to clone the directory page.


W.>
 
Old 02-05-07, 02:44 PM   #5
iPod 20gb
 
Landy's Avatar
 
Join Date: Mar 2007
Location: Brentwood
Posts: 757
Landy is a jewel in the rough

Re: Link Directory


wouldn't I need write permissions on that persons server?
 
Old 02-05-07, 04:58 PM   #6
iPod 20gb
 
Join Date: Jan 2007
Posts: 480
DaveVII will become famous soon enough

Re: Link Directory


yer, thats another problem needed to overcome, but as i understand it, the person just needs to allow writing to the exact URLs, not their whole server.
 
Old 02-05-07, 05:35 PM   #7
Mini Mac
 
chigley's Avatar
 
Join Date: Sep 2006
Location: Bolton/London (home/uni.)
Posts: 8,424
chigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond repute
Send a message via MSN to chigley

Re: Link Directory


I'm locked out of my server at the moment, will post how far I got when I can access the code again!
 
Old 02-05-07, 05:58 PM   #8
Interclickz Support
 
woostar's Avatar
 
Join Date: Aug 2005
Posts: 1,353
woostar is on a distinguished road

Re: Link Directory


Something like this will work

Code:
<?php
if (!is_set) { $HTTP_GET_VARS['page']=0; }
$file = fopen ("http://www.domain.com/directory.php?page=".$HTTP_GET_VARS['page'], "r");
while (!feof ($file)) echo fgets ($file, 1024);
fclose($file);
?>

Also gives you the ability to have pages in the directory.


W.>
 
Old 02-05-07, 05:59 PM   #9
Mini Mac
 
chigley's Avatar
 
Join Date: Sep 2006
Location: Bolton/London (home/uni.)
Posts: 8,424
chigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond repute
Send a message via MSN to chigley

Re: Link Directory


Oi Woostar get on MSN
 
Old 02-05-07, 06:03 PM   #10
Interclickz Support
 
woostar's Avatar
 
Join Date: Aug 2005
Posts: 1,353
woostar is on a distinguished road

Re: Link Directory


I'm having a day off
 
Old 02-05-07, 06:20 PM   #11
iPod 20gb
 
Landy's Avatar
 
Join Date: Mar 2007
Location: Brentwood
Posts: 757
Landy is a jewel in the rough

Re: Link Directory


That's like writing in French to me mate, i'm a c#, asp.net coder, never even looked at PHP before.
 
Old 02-05-07, 06:23 PM   #12
iPod 20gb
 
Join Date: Jan 2007
Posts: 480
DaveVII will become famous soon enough

Re: Link Directory


damn it, didn't think of that. Half of us are gonna be linux based servers and half are gonna be windows. Will this make a difference to the coding?
 
Old 02-05-07, 06:35 PM   #13
iPod 20gb
 
Landy's Avatar
 
Join Date: Mar 2007
Location: Brentwood
Posts: 757
Landy is a jewel in the rough

Re: Link Directory


Shouldn't be a problem, as far as i can see the access rights are the biggest prob, can't say i'm comfortable opening up write permissions for anything coming in form the outside on my webserver. I don't know enough about IIS configuration to be confident i wont get smacked.
 
Old 02-05-07, 06:36 PM   #14
Mini Mac
 
chigley's Avatar
 
Join Date: Sep 2006
Location: Bolton/London (home/uni.)
Posts: 8,424
chigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond repute
Send a message via MSN to chigley

Re: Link Directory


I don't get what you're all on about here? I thought we were just making one page with links to all our sites? :S
 
Old 02-05-07, 06:38 PM   #15
Call me Ben ....
 
bmh16's Avatar
 
Join Date: Apr 2006
Location: Bristol / Neath
Posts: 7,738
bmh16 is a name known to allbmh16 is a name known to allbmh16 is a name known to allbmh16 is a name known to all
Send a message via MSN to bmh16

Re: Link Directory


lol i thought that as well, im well confused!
__________________
 
Old 02-05-07, 07:15 PM   #16
iPod 20gb
 
Landy's Avatar
 
Join Date: Mar 2007
Location: Brentwood
Posts: 757
Landy is a jewel in the rough

Re: Link Directory


Do we not each have to host that file? If we just link to a centrally hosted file of links, I don't think that carries as much weight as us all having a copy of a file with all the links in. Is that right?
 
Old 02-05-07, 07:19 PM   #17
Mini Mac
 
chigley's Avatar
 
Join Date: Sep 2006
Location: Bolton/London (home/uni.)
Posts: 8,424
chigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond repute
Send a message via MSN to chigley

Re: Link Directory


In that case, one of us will host the master file and everyone else will be given a script to put on their site which reads the page from the master.
 
Old 02-05-07, 07:21 PM   #18
iPod 20gb
 
Landy's Avatar
 
Join Date: Mar 2007
Location: Brentwood
Posts: 757
Landy is a jewel in the rough

Re: Link Directory


That's teh thing though, will it be a script that has to be manually run? In which case the system could be abused, or if it's a script that runs as a service and checks every minute/ half hour/ hour/day (whatever) then how would that work given that some servers are running linux and some windows etc.
 
Old 02-05-07, 07:28 PM   #19
Mini Mac
 
chigley's Avatar
 
Join Date: Sep 2006
Location: Bolton/London (home/uni.)
Posts: 8,424
chigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond reputechigley has a reputation beyond repute
Send a message via MSN to chigley

Re: Link Directory


Well the script that the slaves were given would just act as a normal webpage which will contain the links. It would just update when someone or a Googlebot views it.

I'd provide files for each server
 
Old 02-05-07, 07:48 PM   #20
iPod 20gb
 
Join Date: Jan 2007
Posts: 480
DaveVII will become famous soon enough

Re: Link Directory


i've thought through a centralised location for the 'masterfile', but so long as google doesn't detect that this is going on. the script has to be as obvious as possible for the actual links- just a hyperlink with a key words title.
 
 

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off





All times are GMT. The time now is 07:39 PM.
All trademarks and copyrights held by respective owners. Forum posts are owned by the poster.

Powered by vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
SEO by vBSEO
no new posts