Files that currently need a home:

edited February 2005 in Site Issues
Microsoft Windows 98 FE Upgrade
Microsoft Windows 98 Plus!

Microsoft Windows 98 Second Edition

Comments

  • This should be stickied.
  • I need to recreate the NT 3.1 AS Full Hybrid, so can someone install NT 3.1 AS and tell me what the missing file is called? Thanx

    -Q

    PS. You can point the others to me untill someone else steps forward.
  • The one currently on WW? Sure.
  • list updated, people
  • Don't bother with DLing it and reporting the file. It's MUSRMGR.IN_ (D). Fish did it for me and I've re made the hybrid.

    -Q
  • Q wrote:
    I need to recreate the NT 3.1 AS Full Hybrid, so can someone install NT 3.1 AS and tell me what the missing file is called? Thanx
    The missing file is MUSRMGR.IN_
    EDIT: Damn I see, you already got it...
  • Someone get me both of these, I'll take them.
  • Tofer got overloaded with 98SE, anyone else willing to take this?

    -Q
  • Me, but we need multiple hosts on it. I'll take it first tho and monitor the logs this weekend.
  • Maybe we should get a No-IP, "wwnese.no-ip.org" and have IT load-balance amongst different mirrors?

    -Q
  • i could be a backup, once i figure out how to limit connections
  • That would be ****awesome****, Q.
  • OK I'm creating the No-IP, everyone post thier 98SE links.

    -Q
  • GRRR! You have to PAY for that! So much for that!

    -Q
  • Q wrote:
    GRRR! You have to PAY for that! So much for that!

    -Q
    what a ripoff (fail)
  • Hmm, "No" goes to some blog somewhere!

    Anyway, 13 US$.

    -Q
  • That's not too bad... what's it do? Mirror to other sites? Might be a good investment...
  • It lets you have the redirect redirect to different servers, like 1st request goes to one svr, then 2nd one to a different one, 3rd goes to the 3rd one, or back to the 1st one if you've only got 2 svrs, etc.

    -Q
  • How many can it support?
  • I think max is near to possibly over 10 svrs/URIs.

    -Q
  • If only it were free, then it'd be awesome.

    ~Duff
  • Hmm...how about set up a php script for the downloads that randomly sends people to a server based on how many have downloaded that file lately?
  • anyone know how to write that?
  • ive got a random quote generator, might be able to change taht to fit our needs
  • Sounds good, anyone want to try and write this up.

    -Q
  • I found a perl script that might be useful.
    #!/usr/local/bin/perl
      
      # list of hosts to balance between
      @HOSTS = qw/www1.web.org www2.web.org www3.web.org www4.web.org/;
      
      use IO::Socket;
      $SIG{CHLD} = sub { wait() };
      $ENV{'PATH'}='/bin:/usr/bin';
      chomp($hostname = `/bin/hostname`);
      
      # Listen on port 80
      $sock = IO::Socket::INET->new(Listen  => 5,
                                     LocalPort => 80,
                                    LocalAddr => $hostname,
                                    Reuse     => 1,
                                    Proto    => 'tcp');
      
      # become "nobody"
      $nobody  = (getpwnam('nobody'))[2]  || die "nobody is nobody";
      $nogroup = (getgrnam('nogroup'))[2] || die "can't grok nogroup";
      ($<,$() = ($>,$)) = ($nobody,$nogroup); # get rid of root privileges!
      ($\,$/) = ("\r\n","\r\n\r\n");          # CR/LF on output/input
      
      # Go into server mode
      close STDIN; close STDOUT; close STDERR;
      
      # prefork -- gee is that all there is to it?
      fork() && fork() && fork() && fork() && exit 0;
      
      # start accepting connections
      while (my $s = $sock->accept()) {
          do { $s->close; next; } if fork();
          my $request = <$s>;
          redirect($1,$s) if $request=~/(?:GET|POST|HEAD|PUT)\s+(\S+)/;
          $s->flush;
          undef $s;
          exit 0;
      }
      
      sub redirect {
          my ($url,$s) = @_;
          my $host = $HOSTS[rand(@HOSTS)];
          print $s "HTTP/1.0 301 Moved Temporarily";
          print $s "Server: Lincoln's Redirector/1.0";
          print $s "Location: http://${host}${url}";
          print $s "";
      }
    
  • <?php
    
    /**
     * Add this line of code in your page:
     * <?php include "random_quote.php"; ?>
     */
    
    $quotes[] = "<address 1 here>"
    $quotes[] = "<address 2 here>"
    
    srand ((double) microtime() * 1000000);
    $randomquote = rand(0,count($quotes)-1);
    
    echo "<b>" . $quotes[$randomquote] . "</b>";
    
    ?>
    
  • Considering that i downloaded 98 Plus! (Not 98se) at some point in late january, I'll upload it to my server. Actually, This line has dial-up, so i'll be uploading it from dial-up to T1.
Sign In or Register to comment.