Slashdot Mirror


User: SiMac450

SiMac450's activity in the archive.

Stories
0
Comments
4
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 4

  1. Easy test... on Time Travel · · Score: 1
    Why doesn't the guy come up with a time in the near future that he'd send the neutron back to, then watch for a neutron in the right space at that time? Then he'd be able to test whether he was, in the future, able to send the neutron back....

    I'm not very knowledgable about this stuff, so correct me if I'm wrong.

    Simon

  2. Re:Surely not fast enough in fact... on Apple Security Update Posted · · Score: 1
    Mac OS X is immune to the zlib double-free bug. In any application made by Apple, not just rsync.

    Anyway, even if it Mac OS wasn't immune, did it occur to you that Apple might have patched the version of rsync?

    Simon

  3. Re:Semi-stable working PHP on Apache 2.0 Goes Gold! · · Score: 1

    Forgot to note, use --with-apxs2[=DIR] not --with-apxs when building. This can be seen with ./configure, but I wanted to make it as clear as possible.

  4. Semi-stable working PHP on Apache 2.0 Goes Gold! · · Score: 5, Informative
    Well, neither 4.1.2 or 4.2.0RC2 worked for me with Apache 2.0. However, I have a simple solution. I just stole the CVS copy of the apache2filter (well, actually only the .h, .c, and .m4 files) and put it with 4.1.2 and it works perfectly. See it in action at http://simonster.com/. If you're too lazy to do this procedure yourself, I have a source archive at http://simonster.com/php-4.1.2.tar.gz

    For installation, I found that the easiest thing to do is to add

    AddOutputFilter PHP .php
    AddInputFilter PHP .php

    Somewhere in the document and, for indexes,

    AddType text/html .php

    before the DirectoryIndex (which must be modified to add index.php). The CVS version works also, but I had problems with some scripts under it. Hope this helps. SiMac450