Why not register?
Author |
Message |
^Rogue^
|
Posted: Tue Sep 20, 2005 10:38 pm Post subject: |
|
The Ancient One Joined: Tue Dec 28, 2004 8:07 pm Posts: 5184 Location: Always one step behind
|
Can't reach FTI. Anyone else having this problem?
|
|
Top |
|
 |
Sparrowhawk
|
Posted: Tue Sep 20, 2005 10:45 pm Post subject: |
|
Request Territory Joined: Sun Sep 11, 2005 5:12 pm Posts: 4
|
|
Top |
|
 |
vtwin0001
|
Posted: Tue Sep 20, 2005 11:20 pm Post subject: |
|
Demon Of The Abyss Joined: Thu Jun 02, 2005 11:44 pm Posts: 1522
|
the page doesnt load here either
....
now it did...
it seems like the server is taking way too much time to answer
|
|
Top |
|
 |
^Rogue^
|
Posted: Wed Sep 21, 2005 2:52 pm Post subject: |
|
The Ancient One Joined: Tue Dec 28, 2004 8:07 pm Posts: 5184 Location: Always one step behind
|
They seem tobe fine. Page loads again for me albeit slowly.
|
|
Top |
|
 |
MadMatt86
|
Posted: Sat Sep 24, 2005 11:13 pm Post subject: |
|
Request Territory Joined: Sun Sep 18, 2005 5:33 pm Posts: 5
|
FTi wrote: 24/09/05
www >UP | elinks > UP | forum > UP
_________________
|
|
Top |
|
 |
MadMatt86
|
Posted: Sat Sep 24, 2005 11:13 pm Post subject: |
|
Request Territory Joined: Sun Sep 18, 2005 5:33 pm Posts: 5
|
|
Top |
|
 |
Disconnected
|
Posted: Sun Sep 25, 2005 7:26 pm Post subject: New stiff in the haunted house |
|
Request Territory Joined: Sun Sep 25, 2005 7:04 pm Posts: 4
|
Hi everyone!
I'm new here, so I figured I'd introduce myself. And I have a little question for you all.
Anyway.. I'm just an average Zombie based in Denmark, where I've been hunting for brains for the last 28 years. I've also been lurking in the shadows here, for the the better part of 2 years.
I'm also on the staff in another p2p community, called http://www.club2share.com - a place one of your sci-fi nuts also hang out.
Please forgive me for the shameless pluging, but I mention it because I have a question for you all:
I would like to post some of your horror releases on C2S, and I'm wondering whether you want me to link to your site (or the original release threads). I'm of course gonna give the releasers here full credit regardless.
Normally, I'd simply post a link to your index page, but I realize this place is fairly small & primarily a releaser community. C2S - while new, and thus not very large - is the opposite, so I'm not sure you want the attention.
Thanks in advance - And a huge thank you to everyone, for providing a steady stream of great releases for the last couple of years. I'm sorry I don't really have time to be active here at HHAH, because to me, this is the best movie site in the world 
|
|
Top |
|
 |
spudthedestroyer
|
Posted: Sun Sep 25, 2005 7:38 pm Post subject: |
|
Site Admin Joined: Sat Nov 02, 2002 1:35 am Posts: 19780 Location: En España
|
When i post from other sites I normally hit quote, then paste that with a link to the thread/site, something like:
From fh.org
or something. I don't know what proper netiquette is though these days.
_________________ Mouse nipple for the win! Trackpoint or death!
|
|
Top |
|
 |
Disconnected
|
Posted: Sun Sep 25, 2005 9:39 pm Post subject: |
|
Request Territory Joined: Sun Sep 25, 2005 7:04 pm Posts: 4
|
Thanks a bunch Spud. I dunno what the netiiquette is these days either, but since you're the deadmin, that's how I'll do it. Was what I intended to anyway
Holy crap! I just saw what you've done for us!!! Thank you so very much Spud! You are now my personal hero, and I shall sacrifice virgins in your honour on a weekly basis!
|
|
Top |
|
 |
Forum Bot
|
Posted: Mon Sep 26, 2005 5:34 am Post subject: Re: New stiff in the haunted house |
|
Dead But Dreaming Joined: Thu Jan 01, 1970 1:00 am Posts: 316
|
Disconnected wrote: | based in Denmark |
Arg, vikingerne angriber 
|
|
Top |
|
 |
spudthedestroyer
|
Posted: Mon Sep 26, 2005 8:19 am Post subject: |
|
Site Admin Joined: Sat Nov 02, 2002 1:35 am Posts: 19780 Location: En España
|
lol, did i get banned from posting?
The bbcode at that forum is messed up! i posted a load of past releases, and none of the ed2k links worked, so i went back to edit and then i can't make any posts... looks like someone fixed them anyway.
You know you can implement ed2k link clicks without the need for markup, and the click all links too... that can be done easily via this bit of code:
Code: | /** * Christian Riesen - Jun 27, 2004 * Adds the "Add all links to ed2k client" link to the end of the post text */ function make_addalled2k_link($text,$post_id) { // padding $ret = ' ' . $text;
// dig through the message for all ed2k links! // split up by "ed2k:" $t_ed2k_raw = explode("ed2k:",$text);
// The first item is garbage unset($t_ed2k_raw[0]);
// no need to dig through it if there are not at least 2 links! $t_ed2k_possibles = count($t_ed2k_raw); if ($t_ed2k_possibles > 1) { unset($t_ed2k_reallinks); foreach ($t_ed2k_raw as $t_ed2k_raw_line) { $t_ed2k_parts = explode("|",$t_ed2k_raw_line); // This looks now like this (only important parts included /* [1]=> string(4) "file" [2]=> string(46) "some-filename-here.txt" [3]=> string(9) "321456789" [4]=> string(32) "112233445566778899AABBCCDDEEFF11" */
/*********************************************************** * SPUD: Fix %20 with "." * ***********************************************************/ $t_ed2k_parts[2] = str_replace("%20",".",$t_ed2k_parts[2]); // ****** RESUME NORMAL ********* /*********************************************************** * SPUD: Fix fileheaven clown freaks * ***********************************************************/ $t_ed2k_parts[2] = str_replace("-span style=color--#ff0000--b-","",$t_ed2k_parts[2]); $t_ed2k_parts[2] = str_replace("--b---span-","",$t_ed2k_parts[2]); // ****** RESUME NORMAL *********
// Check the obvious things if (strlen($t_ed2k_parts[1]) == 4 AND $t_ed2k_parts[1] === "file" AND strlen($t_ed2k_parts[2]) > 0 AND strlen($t_ed2k_parts[4]) == 32 AND floatval($t_ed2k_parts[3]) > 0) { // This is a true link, lets paste it together and put it in an array $t_ed2k_reallinks[] = "ed2k://|file|".str_replace("'","\'",$t_ed2k_parts[2])."|".$t_ed2k_parts[3]."|".$t_ed2k_parts[4]."|/"; } }
// Now lets see if we have 2 or more links // Only then, we do our little trick, because otherwise, it would be wasted for one link alone! $t_ed2k_confirmed = count($t_ed2k_reallinks); if ($t_ed2k_confirmed > 1) { $t_ed2kinsert = " \n"; $t_ed2kinsert .= "<SCRIPT> "; $t_ed2kinsert .= "filearray".$post_id."=new Array; "; $t_ed2kinsert .= "n=0; "; $i = 0; foreach($t_ed2k_reallinks as $t_ed2klink) { $t_ed2kinsert .= "filearray".$post_id."[".$i."]='".$t_ed2klink."'; "; $i++; } $t_ed2kinsert .= "iv=false; "; $t_ed2kinsert .= "function addfile".$post_id."(){ "; $t_ed2kinsert .= " var s=filearray".$post_id."[n]; "; $t_ed2kinsert .= " n++; "; $t_ed2kinsert .= " if(n==filearray".$post_id.".length && iv){ "; $t_ed2kinsert .= " top.clearInterval(iv); "; $t_ed2kinsert .= " n=0; "; $t_ed2kinsert .= " } "; $t_ed2kinsert .= " top.document.location=s; "; $t_ed2kinsert .= " return true; "; $t_ed2kinsert .= "} "; $t_ed2kinsert .= "function addall".$post_id."(){iv=top.setInterval('addfile".$post_id."()',250)} "; $t_ed2kinsert .= "</SCRIPT> "; $t_ed2kinsert .= "<hr><div align=\"center\"><font size=\"-2\"><a href='javascript:addall".$post_id."()'>Add ".$t_ed2k_confirmed."</i> links to ed2k client</a></font></div>"; $ret = $ret . $t_ed2kinsert; } }
// remove padding $ret = substr($ret, 1);
return($ret); }
|
Thats not restricted to any php type of forum, you just need to pass an unique key and the post text to the function, ie:
$message = make_addalled2k_link($message,$post_id)
_________________ Mouse nipple for the win! Trackpoint or death!
|
|
Top |
|
 |
Disconnected
|
Posted: Tue Sep 27, 2005 2:42 pm Post subject: |
|
Request Territory Joined: Sun Sep 25, 2005 7:04 pm Posts: 4
|
Thanks so much! I doubt you got banned, but I'll take a look right away. Sorry but we've been working on converting to Vb for a while, so fixing all the little errors from when the site blew upo last time has taken a backseat =P
This bit though, that's worth every single Bothan spy. Cheers
NB: You should have normal access restored within the hour, so sorry 
|
|
Top |
|
 |
TaKYoN
|
Posted: Tue Sep 27, 2005 3:02 pm Post subject: |
|
The Ancient One Joined: Mon Mar 31, 2003 3:28 pm Posts: 4096 Location: Somewhere between dimensions, waiting.
|
Hhhm, everytime I try to register it says I am not authorised, or something similar, to use the board.
Fix it please as I wish to KoRRuPT your members.
_________________ FIRST SEAL BRINGS PESTILENCE. Small Time Rippers - 2003-2008 - R.I.P. 'Do I look like someone who cares what God thinks?'
|
|
Top |
|
 |
TaKYoN
|
Posted: Tue Sep 27, 2005 3:09 pm Post subject: |
|
The Ancient One Joined: Mon Mar 31, 2003 3:28 pm Posts: 4096 Location: Somewhere between dimensions, waiting.
|
God dammit, it has been several minutes and it is still fooked.
_________________ FIRST SEAL BRINGS PESTILENCE. Small Time Rippers - 2003-2008 - R.I.P. 'Do I look like someone who cares what God thinks?'
|
|
Top |
|
 |
realdiqqer
|
Posted: Tue Sep 27, 2005 4:12 pm Post subject: -> other sites... |
|
Servant Of The Dead Donkey Joined: Fri Jul 15, 2005 10:12 pm Posts: 81
|
|
Top |
|
 |
PC_Arcade
|
Posted: Tue Sep 27, 2005 4:25 pm Post subject: |
|
Mod of the Living Dead Joined: Thu Jul 24, 2003 12:16 pm Posts: 6898 Location: Desolation
|
Moved to general
_________________ Small Time Rippers : 2003 - 2008 R.I.P
|
|
Top |
|
 |
johnathome
|
Posted: Tue Sep 27, 2005 8:33 pm Post subject: |
|
Demon Of The Abyss Joined: Sun Oct 26, 2003 6:10 pm Posts: 1286 Location: Living in Gordon Brown's HELL
|
You might find a few here
http://www.freereactor.com/list.php
although some may be shut now.
Lots of non-english sites there too
_________________ "Oh good God, i think he's the antichrist" (Up in smoke)
|
|
Top |
|
 |
spudthedestroyer
|
Posted: Tue Sep 27, 2005 9:01 pm Post subject: |
|
Site Admin Joined: Sat Nov 02, 2002 1:35 am Posts: 19780 Location: En España
|
_________________ Mouse nipple for the win! Trackpoint or death!
|
|
Top |
|
 |
realdiqqer
|
Posted: Wed Sep 28, 2005 8:06 am Post subject: |
|
Servant Of The Dead Donkey Joined: Fri Jul 15, 2005 10:12 pm Posts: 81
|
|
Top |
|
 |
Disconnected
|
Posted: Wed Sep 28, 2005 9:09 am Post subject: |
|
Request Territory Joined: Sun Sep 25, 2005 7:04 pm Posts: 4
|
Hmm... Do you get a registration mail?
I'm gonna get the admin to come help you out.
Spud do you still have problems? You aren't (and weren't) banned.
EDIT: Ok, there was a natural explanation for all this. We've had no end of grief from someone using the same ISP, so we blocked it entirely.
Anyway, we've lifted the ban, so you shouldn't have any problems now. Hope you'll like the place as much as I like this one
Hehe Skr?l SK??L Jensus!
|
|
Top |
|
 |
Who is online |
Users browsing this forum: No registered users and 4 guests |
Moderator: Help Mods
|
|
|
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
|
|