Recent content by Arctic Fire

  1. A

    SSL Certs

    You can get a free one from here. http://www.startssl.com/?app=1 It's valid for a year, after that, you just request a new one.
  2. A

    Club Uptime feedback anyone?

    Well, I can't give you a review, since I just signed up yesterday. But I do want to say thanks for the link. :)
  3. A

    what program is this?

    That appears to be Eclipse. I'm basing this simply on the fact that the icons look similar.
  4. A

    html problemo

    You're either going to have to change update.php to redirect back to index.php, or use AJAX. Here's how to do it with AJAX and the jQuery framework. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script> <script type="text/javascript">...
  5. A

    Flash applet to play .wav files

    I don't think Flash can play WAV files natively. If you need to play WAV, check these links out. http://richapps.de/?p=97 http://code.google.com/p/popforge/source/browse/#svn/trunk/flash/PopforgeLibrary/src/de/popforge/format/wav Here's a code snippet that may help you use the PopForge library...
  6. A

    list number of accounts on server?

    Use the cPanel API. http://docs.cpanel.net/twiki/bin/view/AllDocumentation/AutomationIntegration/ListAccounts Here's a PHP class to help with this. http://www.phpclasses.org/package/4150-PHP-Manipulate-Cpanel-WHM-accounts-using-its-XML-API.html Using the above class, you can do something...
  7. A

    Apache mod_rewrite not escaping ?

    You can't escape the ? because it's not there. The data available in the rewrite rule does not include the query string. You can only compare against the query string using a rewrite condition and the query string variable. Here's the code you want: RewriteEngine on RewriteCond...
  8. A

    Apache mod_rewrite not escaping ?

    EDIT: I'm sorry, I misunderstood your post. I don't think you can match the query string that way. Use a rewrite condition, like this: RewriteCond %{QUERY_STRING} ^/forums/viewforum/([^/\.]+)/?$ Read this for some more information...
  9. A

    Streaming my music library on the go

    I know there are various applications that let you stream your iTunes library to wherever you may be in the world. But are there any good ones that let you do it that do not rely on iTunes? More importantly, I'm looking for one with a slick interface like grooveshark.com? I particularly like the...
  10. A

    How can I do an FTP batch rename?

    Well, I'm not sure if you know how to run PHP scripts, but here's one I wrote for you right quick. :D This will rename files and directories so that they're all lowercase. <?php // The directory that contains the files that you want to rename to lowercase $directory =...
  11. A

    Content Advisor Password :: Is it recoverable?

    It's not a big school, so probably can't afford Cisco or Websense. They've used OpenDNS in the past; I'm not sure why they stopped. I guess I'll just tell them of my theory that the content advisor password can be recovered and let them go from there. Thanks anyway for your time.
  12. A

    Content Advisor Password :: Is it recoverable?

    Well, not actually prove it. I'm not asking how to do it. I just want to know if it can be done, so I can backup my claim. I think some of the computers have a local admin password that's the same, which would mean that the hash can be acquired pretty easily. However, since the password has a...
  13. A

    Content Advisor Password :: Is it recoverable?

    My school uses the same password for the content advisor as they do for the server's administrator account. I want to report the security risk in doing this, but I want to be able to back up my claim that the password can be obtained from the local computers, rather than just say "it's good...
  14. A

    Content Advisor Password :: Is it recoverable?

    Well, as the title says, I'm wondering if it's possible to recover the content advisor password. There are a thousand and one articles on how to remove it, but none (that I can find) on how to get the current one. I know that it's stored in...
  15. A

    Where is a Good, Free, Uptodate, PHP webserver (Win32)

    They don't "talk" to each other until you tell them to. :D (They're good, obedient puppies) Read this. It shows you how to configure PHP and Apache. http://www.thesitewizard.com/php/install-php-5-apache-windows.shtml
Back
Top