Search results

  1. kilowatt

    can't POST in apache

    I have been extremely fustrated in the last few days over apache. I have cleaned out my httpd.conf file completely, and reguardless of what url I go to on my web server, I cannot run any CGI (perl, php, ssi, etc) that uses the method POST in a form. Here is my error: The requested...
  2. kilowatt

    Problems running CGI-scripts in Apache.

    add -wT to the perl eg: #!/usr/bin/perl -wT
  3. kilowatt

    sendmail: allowing specific host range for relay

    oh, and I have the host in my relay-domains file as well.
  4. kilowatt

    sendmail: allowing specific host range for relay

    Let us say that I am an ISP. And I have my mail server co-located away from my site. And it therefore has a different IP address than the rest of my hosts and clients. I would like to allow all my hosts and clients to relay mail through this host (ie, send mail outward). The host rang I...
  5. kilowatt

    Postfix installation for 10.2 (help needed)

    My gutt tells me you need to create a group called 'postdrop' and own the appropriate files to that group. Open up the NetInfo Manager. You will see an entry labled 'groups'. Click this, select a given group, duplicate it, and modify it for your pruposes. Make sure you change the gid to...
  6. kilowatt

    Killer X11 Apps --- any suggestions?

    I like running afterstep, and specifically, the Wharf (kind of like a dock for x11), and aterm (nice afterstep terminal that supports cool transparency effects). What do I actually *do* in x11? xchat, gimp.... sometimes I run netscape 4 off my SGI (which has no graphical output), and browse...
  7. kilowatt

    openssh < v3.7 vulnerablility

    The latest version of nmap doesn't typically scan EVERY port. Especially ports over 2000. nmap scans only 'known' ports. Unless you tell it otherwise, in which it takes forever to scan one ip address. Anyone with malicious intent is more likely, imo, to run something like this: nmap -F -p22...
  8. kilowatt

    ITMS is best online music store

    Barenaked Ladies? That is all I need :p
  9. kilowatt

    openssh < v3.7 vulnerablility

    BTW, openssh has a seccond-generation patch - its the aformentioned patch, and some new stuff. I'll be patching my systems with the patch from openbsd.org. I'm very surprised apple still has not released an update.
  10. kilowatt

    iChat debugging console?

    I was poking around inside iChat the other day, and I noticed a .nib file for a Console. Looks interesting - perhaps it displays IM network negotiation. There is a 'Verbose' check box as well. Anyway, anyone know how to enable this window in iChat?
  11. kilowatt

    openssh < v3.7 vulnerablility

    You have three options: 1) Patch existing source code: If you have source installed for OpenSSH, you can apply this patch and recompile. This is an unlikely situation on Mac OS X. 2) Download, compile, and reinstall. This is the simplest. Download OpenSSH 3.7p1. Decompress, and make...
  12. kilowatt

    ITMS is best online music store

    no beatles... no metallica... no white stripes... And, you can't choose a higher quality file (like... +200kbps). I was just sitting around with a friend, and he had those artists on his mind, and I was like 'check this itunes thing out' and itunes didn't have ANY of them. Shame! They...
  13. kilowatt

    Simple Encryption with strings

    See this for what the program does: slashdot.org I think the license will make more sence. Or, you could just run the program :gasp!: and then you'd get it :p But yes, its a bit of a joke
  14. kilowatt

    Simple Encryption with strings

    might want to check this out: http://www.jwz.org/hacks/scrmable.pl
  15. kilowatt

    Simple Encryption with strings

    I wish I knew more about programming, as I'm a bit obsessed with enryption. I would try to create a rolling encryption method - where the encryption offset changes with every character. So, maybe something like this: new number=(normal number)+(offset)+(5-(2*Line number)+character number)
  16. kilowatt

    two ACTIONs for one Form?

    well, did some thinking, and decided to just add a radio button for the option, and have the next php script validate the choice. Still wondering though, if I could have done it the other way.
  17. kilowatt

    Apache Permissions

    First off, realize that apache requires 'execute' permissions on directories and files to show them to the user on the other end. Not just read. I found this out the hard annoying way. If a chmod 755 -R mt/ does not fix it, check your apache config file. It is possable to restrict various...
  18. kilowatt

    two ACTIONs for one Form?

    I have a situation, in a php-based web mail agent called "Squirl Mail", in which we support ssl and non-ssl connections. I would like to place two buttons at the bottom of the login page, one for ssl login, and one for non-ssl. However, I can find no method to place two submit buttons...
  19. kilowatt

    Giving a CLI app an Aqua window - how easy?

    Oh, and if you would like to see this in action, a front end to 'nmap' (cli port scanning tool) written in applescript is avaliable on my site: http://lfnet.net/index-old.html I no longer maintain it, but there's enough code there for you to see how this is done.
  20. kilowatt

    Giving a CLI app an Aqua window - how easy?

    its also pretty easy to write applescript to do this. While apple script will not allow real-time control of a cli app, it is an extremely easy way to allow non-cli users to use a cli application. At any rate, its probably easier than compiling your code into a cocoa app.
Back
Top