need a PHP script coded

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Mr Pheer
    So Fucking Banned
    • Dec 2002
    • 22083

    #1

    need a PHP script coded

    should be simple

    take a list of URLs I provide, check each one of them for a 404 response. If it gets that response, tell me which URL did it.

    There are hundreds to check

    paypal is ready to go
  • Juicy D. Links
    So Fucking Banned
    • Apr 2001
    • 122992

    #2
    show me your penis please

    Comment

    • harvey
      Confirmed User
      • Jul 2001
      • 9266

      #3
      I already did it for you, please send $100 via paypal
      This post is endorsed by CIA, KGB, MI6, the Mafia, Illuminati, Kim Jong Il, Worldwide Ninjas Association, Klingon Empire and lolcats. Don't mess around with it, just accept it and embrace the truth

      Comment

      • Mr Pheer
        So Fucking Banned
        • Dec 2002
        • 22083

        #4
        Originally posted by harvey
        I already did it for you, please send $100 via paypal
        Its not checking for 404's on my sites, its on another site.

        thats also not PHP
        Last edited by Mr Pheer; 05-22-2008, 08:26 PM.

        Comment

        • harvey
          Confirmed User
          • Jul 2001
          • 9266

          #5
          Originally posted by Mr Pheer
          Its not checking for 404's on my sites, its on another site.

          thats also not PHP
          Xenu checks broken links in your site or off your site, no matter what. Not sure if I get what you mean. but you're right, is not PHP (although it's 10 times better than any php script out there and it's free). Anyway, if it's not what you need, there's nothing to discuss, however, a "thanx" or "thanx, but not what I was looking for" would have been enough
          This post is endorsed by CIA, KGB, MI6, the Mafia, Illuminati, Kim Jong Il, Worldwide Ninjas Association, Klingon Empire and lolcats. Don't mess around with it, just accept it and embrace the truth

          Comment

          • Steve Awesome
            Confirmed User
            • Jan 2007
            • 1575

            #6
            Didn't Xenu throw the Thetans into a volcano? That bastard!

            Comment

            • Sly
              Let's do some business!
              • Sep 2004
              • 31376

              #7
              Originally posted by harvey
              Xenu checks broken links in your site or off your site, no matter what. Not sure if I get what you mean. but you're right, is not PHP (although it's 10 times better than any php script out there and it's free). Anyway, if it's not what you need, there's nothing to discuss, however, a "thanx" or "thanx, but not what I was looking for" would have been enough

              He wants the program to feed in a list of addresses. Go to each address and see if the site/file exists. Create and output list of addresses that return a 404.
              Vacares - Web Hosting, Domains, O365, Security & More - Paxum and BTC Accepted

              Windows VPS now available
              Great for TSS, Nifty Stats, remote work, virtual assistants, etc.
              Click here for more details.

              Comment

              • Bro Media - BANNED FOR LIFE
                MOBILE PORN: IMOBILEPORN
                • Jan 2004
                • 16502

                #8
                PHP Code:
                <?php
                if($_POST['submit'] == true)
                {
                    $exp_url = explode("\n", $_POST['url']);
                    foreach($exp_url as $url)
                    {
                        $response = http_get($url, array("timeout" => 1), $info);
                        if($info['response_code'] == "404")
                        {
                            echo "<b>404</b>&nbsp;" . $url . "<br />\n";
                        }
                    }
                }else{
                ?>
                <form method="post">
                  <div align="center"><strong>Urls:</strong><br>
                      <textarea name="url" id="url" cols="45" rows="5"></textarea>
                    <br>  
                    <input type="submit" name="submit" id="submit" value="Check Response">
                  </div>
                </form>
                <?php
                }
                ?>
                don't have paypal, but if you got epass, i'll take a some, [email protected]

                Comment

                • Bro Media - BANNED FOR LIFE
                  MOBILE PORN: IMOBILEPORN
                  • Jan 2004
                  • 16502

                  #9
                  oh, i forgot you need the php_http extension installed on your server.

                  Comment

                  • GrouchyAdmin
                    Now choke yourself!
                    • Apr 2006
                    • 12085

                    #10
                    This is kind of simple. Do you just want it to report 404s? How do you want to 'feed' it?

                    Comment

                    • ztik
                      Confirmed User
                      • Aug 2001
                      • 5196

                      #11
                      script in my sig does that!
                      .

                      Comment

                      • GrouchyAdmin
                        Now choke yourself!
                        • Apr 2006
                        • 12085

                        #12
                        Originally posted by Jaysin
                        oh, i forgot you need the php_http extension installed on your server.
                        cURL is almost always safe to assume these days.

                        Comment

                        • Zoose
                          Confirmed User
                          • Aug 2006
                          • 268

                          #13
                          Here's a version that uses curl:

                          <?php

                          $list_of_urls = file( "urls.txt" );

                          while( list( $key, $value ) = each( $list_of_urls ) ){

                          $curl_handle = curl_init();

                          curl_setopt( $curl_handle, CURLOPT_URL, $list_of_urls[$key] );
                          curl_setopt( $curl_handle, CURLOPT_RETURNTRANSFER, true );

                          $response = curl_exec( $curl_handle );
                          $response_code = curl_getinfo( $curl_handle, CURLINFO_HTTP_CODE );

                          if( $response_code == '404' ){

                          echo $list_of_urls[$key]." appears to be 404<br>";

                          }

                          }

                          ?>
                          Make a urls.txt file and put one url per line.

                          Comment

                          • GrouchyAdmin
                            Now choke yourself!
                            • Apr 2006
                            • 12085

                            #14


                            This one's stupid, but it uses the common class.curl.php, and does a select based upon the error, so you can add different features/functions for 403s, 500s, etc.. Mostly, I'm just lazy and didn't figure it deserved OOP, even if I'm using an OOP class. Enjoy.

                            Code:
                            <html>
                            <head>
                            <Title>404 Test Thingy or whatever</title>
                            </head>
                            <body bgcolor="#ffffff" text="#000000" link="#0000ff">
                            <br>
                            <form method="post">
                              <div align="center"><strong>Test URLs:</strong><br>
                                  <textarea name="urls" id="urls" cols="45" rows="5"><?=isset($_REQUEST['urls'])?$_REQUEST['urls']:"";?></textarea>
                                <br>
                                <input type="submit" name="submit" id="submit" value="Check Response">
                              </div>
                            </form>
                            <?php
                            // This is hardly an example of good PHP.  Ugh.
                            @require_once("class.curl.php");
                            // trim() to get rid of errant enter keys.
                            $myurls = (isset($_REQUEST['urls'])?explode("\n", trim($_REQUEST['urls'])): array());
                            foreach ($myurls as $url) {
                              // use our cURL class.
                              $curlInit = new curl($url);
                              // Make sure we don't follow redirects.
                              $curlInit->setopt(CURLOPT_FOLLOWLOCATION, FALSE) ;
                              // Do it.
                              $curlInit->exec();
                              // If we returned a connection error, say so.
                              if ($myError = $curlInit->hasError()) {
                                echo "ERR: $url ($myError)<br>\n";
                              } else {
                                // Reinit our array
                                $status = array();
                                // Seems to have worked, parse it.
                                if (is_array($curlInit->m_status))
                                  $status = $curlInit->m_status;
                                // Simple error checking.
                                if (!empty($status)) {
                                  switch($status["http_code"]) {
                                    case "404":
                                       echo "<font color='red'>404</font>: <a href='$url' target='_new'>[link]</a> $url<br>\n";
                                       break;
                                    default:
                                       // Do nothing if not 404, I guess.
                                       break;
                                  }
                                }
                              }
                              // We're done, close the socket.
                              $curlInit->close();
                            } ?>
                            </body>
                            </html>
                            Last edited by GrouchyAdmin; 05-22-2008, 09:31 PM. Reason: rooka rike dis

                            Comment

                            • Zoose
                              Confirmed User
                              • Aug 2006
                              • 268

                              #15
                              rofl

                              404 Test Thingy or whatever
                              Nicely done though for hacking it together in 5 mins. :p

                              Comment

                              • GrouchyAdmin
                                Now choke yourself!
                                • Apr 2006
                                • 12085

                                #16
                                Originally posted by Zoose
                                Nicely done though for hacking it together in 5 mins. :p
                                I dunno if I'd give it ratings that high. There's gonna be someone who needs urldecode, someone with a bizarre gpg setting, and.. oh god fuck PHP.

                                At least I can rely on trusty ol' cURL to almost always be there. fopen urls and http_get don't usually worked no more on crummy virtualhosts, but cURL? Most of the time. I almost turned headers on and NOBODY to use a HEAD to parse with less overhead, but the class is oddly lacking in the ability to handle that.

                                Comment

                                • mrkris
                                  Confirmed User
                                  • May 2005
                                  • 2737

                                  #17
                                  Originally posted by GrouchyAdmin
                                  I dunno if I'd give it ratings that high. There's gonna be someone who needs urldecode, someone with a bizarre gpg setting, and.. oh god fuck PHP.

                                  At least I can rely on trusty ol' cURL to almost always be there. fopen urls and http_get don't usually worked no more on crummy virtualhosts, but cURL? Most of the time. I almost turned headers on and NOBODY to use a HEAD to parse with less overhead, but the class is oddly lacking in the ability to handle that.
                                  I give you 2/5, mainly because I see you're lacking eval() calls.

                                  PHP-MySQL-Rails | ICQ: 342500546

                                  Comment

                                  • pr0
                                    rockin tha trailerpark
                                    • May 2001
                                    • 23088

                                    #18
                                    how about the same script that looks for txt on the index, instead of a response code

                                    like the text "this site does not exist"

                                    how would ya do that in curl/php? That might be even more fool proof for him. Sometimes servers return bad codes even if the site isn't bad. This would foolproof it.
                                    __________
                                    Loadedca$h - get sum! - Revengebucks - mmm rebills! - webair (gotz sErVrz)

                                    Comment

                                    • Mr Pheer
                                      So Fucking Banned
                                      • Dec 2002
                                      • 22083

                                      #19
                                      Originally posted by pr0
                                      how about the same script that looks for txt on the index, instead of a response code

                                      like the text "this site does not exist"

                                      how would ya do that in curl/php? That might be even more fool proof for him. Sometimes servers return bad codes even if the site isn't bad. This would foolproof it.
                                      that was kind of exactly what I was looking for

                                      Hillsborough on ICQ made exactly what I needed, not sure what his name is on GFY

                                      Comment

                                      • mrkris
                                        Confirmed User
                                        • May 2005
                                        • 2737

                                        #20
                                        Originally posted by pr0
                                        how about the same script that looks for txt on the index, instead of a response code

                                        like the text "this site does not exist"

                                        how would ya do that in curl/php? That might be even more fool proof for him. Sometimes servers return bad codes even if the site isn't bad. This would foolproof it.
                                        True, but that's not as common as you think. Many times people just use a customized 404.

                                        PHP-MySQL-Rails | ICQ: 342500546

                                        Comment

                                        • GrouchyAdmin
                                          Now choke yourself!
                                          • Apr 2006
                                          • 12085

                                          #21
                                          Originally posted by mrkris
                                          I give you 2/5, mainly because I see you're lacking eval() calls.
                                          bich i cut u

                                          Code:
                                          <html>
                                          <head>
                                          <Title>404 Test Thingy from hell</title>
                                          </head>
                                          <body bgcolor="#ffffff" text="#000000" link="#0000ff">
                                          <br>
                                          <form method="post">
                                            <div align="center"><strong>Test URLs:</strong><br>
                                                <textarea name="urls" id="urls" cols="45" rows="5"><?=isset($_REQUEST['urls'])?$_REQUEST['urls']:"";?></textarea>
                                              <br>
                                              <input type="submit" name="submit" id="submit" value="Check Response">
                                            </div>
                                          </form>
                                          <?php
                                          // BE SAFE: WRAP YOUR CRAP!
                                          if (!function_exists('findCurlCli')) {
                                            function findCurlCli() {
                                              $curlClis=array(
                                                            '/usr/bin/curl', '/usr/local/bin/curl',
                                                            '/usr/bin/curl-cli', '/usr/local/bin/curl-cli',
                                                            '/usr/bin/curlcli', '/usr/local/bin/curlcli',
                                                            '/usr/bin/curl-cli', '/usr/local/bin/curl-cli',
                                                            // FOR SOME REASON THIS DOESNT WORK!!!!!
                                                            // '/usr/bin/wget', '/usr/local/bin/wget'
                                                            );
                                          
                                              foreach ($curlClis as $curlcli) {
                                                if (@is_file("$curlcli") && is_executable("$curlcli")) {
                                                    return("$curlcli");
                                                    break;
                                                } else {
                                                   return FALSE;
                                                }
                                              }
                                            }
                                          }
                                          // lol
                                          if ($foundCurl = findCurlCli()) {
                                            $myurls = (isset($_REQUEST['urls'])?explode("\n", trim($_REQUEST['urls'])): array());
                                            foreach ($myurls as $url) {
                                              // escapeshellcmd is for pussies and communists.
                                              $data = system("$foundCurl -I $url | grep -v '404'");
                                                if ($data = "1") {
                                                  echo "<font color='red'>404</font>: <a href='$url' target='_new'>[link]</a> $url<br>\n";
                                                }
                                              }
                                            }
                                          }
                                          ?>
                                          </body>
                                          </html>

                                          Comment

                                          • GrouchyAdmin
                                            Now choke yourself!
                                            • Apr 2006
                                            • 12085

                                            #22
                                            Originally posted by mrkris
                                            True, but that's not as common as you think. Many times people just use a customized 404.
                                            One of these days, WordPress, shitty management tools, and RoR will support standard error codes.


                                            That's in 2038, of course.

                                            Comment

                                            • mrkris
                                              Confirmed User
                                              • May 2005
                                              • 2737

                                              #23
                                              Originally posted by GrouchyAdmin
                                              One of these days, WordPress, shitty management tools, and RoR will support standard error codes. That's in 2038, of course.
                                              and some day JESUS WILL SAVE YOU. ZING!

                                              PHP-MySQL-Rails | ICQ: 342500546

                                              Comment

                                              • mrkris
                                                Confirmed User
                                                • May 2005
                                                • 2737

                                                #24
                                                Originally posted by GrouchyAdmin
                                                bich i cut u

                                                Code:
                                                <html>
                                                <head>
                                                <Title>404 Test Thingy from hell</title>
                                                </head>
                                                <body bgcolor="#ffffff" text="#000000" link="#0000ff">
                                                <br>
                                                <form method="post">
                                                  <div align="center"><strong>Test URLs:</strong><br>
                                                      <textarea name="urls" id="urls" cols="45" rows="5"><?=isset($_REQUEST['urls'])?$_REQUEST['urls']:"";?></textarea>
                                                    <br>
                                                    <input type="submit" name="submit" id="submit" value="Check Response">
                                                  </div>
                                                </form>
                                                <?php
                                                // BE SAFE: WRAP YOUR CRAP!
                                                if (!function_exists('findCurlCli')) {
                                                  function findCurlCli() {
                                                    $curlClis=array(
                                                                  '/usr/bin/curl', '/usr/local/bin/curl',
                                                                  '/usr/bin/curl-cli', '/usr/local/bin/curl-cli',
                                                                  '/usr/bin/curlcli', '/usr/local/bin/curlcli',
                                                                  '/usr/bin/curl-cli', '/usr/local/bin/curl-cli',
                                                                  // FOR SOME REASON THIS DOESNT WORK!!!!!
                                                                  // '/usr/bin/wget', '/usr/local/bin/wget'
                                                                  );
                                                
                                                    foreach ($curlClis as $curlcli) {
                                                      if (@is_file("$curlcli") && is_executable("$curlcli")) {
                                                          return("$curlcli");
                                                          break;
                                                      } else {
                                                         return FALSE;
                                                      }
                                                    }
                                                  }
                                                }
                                                // lol
                                                if ($foundCurl = findCurlCli()) {
                                                  $myurls = (isset($_REQUEST['urls'])?explode("\n", trim($_REQUEST['urls'])): array());
                                                  foreach ($myurls as $url) {
                                                    // escapeshellcmd is for pussies and communists.
                                                    $data = system("$foundCurl -I $url | grep -v '404'");
                                                      if ($data = "1") {
                                                        echo "<font color='red'>404</font>: <a href='$url' target='_new'>[link]</a> $url<br>\n";
                                                      }
                                                    }
                                                  }
                                                }
                                                ?>
                                                </body>
                                                </html>
                                                I now give you 4/5 -- only because you have now mixed view with logic.

                                                PHP-MySQL-Rails | ICQ: 342500546

                                                Comment

                                                • pr0
                                                  rockin tha trailerpark
                                                  • May 2001
                                                  • 23088

                                                  #25
                                                  Originally posted by GrouchyAdmin
                                                  bich i cut u

                                                  Code:
                                                  <html>
                                                  <head>
                                                  <Title>404 Test Thingy from hell</title>
                                                  </head>
                                                  <body bgcolor="#ffffff" text="#000000" link="#0000ff">
                                                  <br>
                                                  <form method="post">
                                                    <div align="center"><strong>Test URLs:</strong><br>
                                                        <textarea name="urls" id="urls" cols="45" rows="5"><?=isset($_REQUEST['urls'])?$_REQUEST['urls']:"";?></textarea>
                                                      <br>
                                                      <input type="submit" name="submit" id="submit" value="Check Response">
                                                    </div>
                                                  </form>
                                                  <?php
                                                  // BE SAFE: WRAP YOUR CRAP!
                                                  if (!function_exists('findCurlCli')) {
                                                    function findCurlCli() {
                                                      $curlClis=array(
                                                                    '/usr/bin/curl', '/usr/local/bin/curl',
                                                                    '/usr/bin/curl-cli', '/usr/local/bin/curl-cli',
                                                                    '/usr/bin/curlcli', '/usr/local/bin/curlcli',
                                                                    '/usr/bin/curl-cli', '/usr/local/bin/curl-cli',
                                                                    // FOR SOME REASON THIS DOESNT WORK!!!!!
                                                                    // '/usr/bin/wget', '/usr/local/bin/wget'
                                                                    );
                                                  
                                                      foreach ($curlClis as $curlcli) {
                                                        if (@is_file("$curlcli") && is_executable("$curlcli")) {
                                                            return("$curlcli");
                                                            break;
                                                        } else {
                                                           return FALSE;
                                                        }
                                                      }
                                                    }
                                                  }
                                                  // lol
                                                  if ($foundCurl = findCurlCli()) {
                                                    $myurls = (isset($_REQUEST['urls'])?explode("\n", trim($_REQUEST['urls'])): array());
                                                    foreach ($myurls as $url) {
                                                      // escapeshellcmd is for pussies and communists.
                                                      $data = system("$foundCurl -I $url | grep -v '404'");
                                                        if ($data = "1") {
                                                          echo "<font color='red'>404</font>: <a href='$url' target='_new'>[link]</a> $url<br>\n";
                                                        }
                                                      }
                                                    }
                                                  }
                                                  ?>
                                                  </body>
                                                  </html>
                                                  wait is this thing checking it the way i suggested for a certain text area?
                                                  __________
                                                  Loadedca$h - get sum! - Revengebucks - mmm rebills! - webair (gotz sErVrz)

                                                  Comment

                                                  • GrouchyAdmin
                                                    Now choke yourself!
                                                    • Apr 2006
                                                    • 12085

                                                    #26
                                                    Originally posted by pr0
                                                    wait is this thing checking it the way i suggested for a certain text area?
                                                    Sure doesn't, but it can.. Just change the grep statement and remove the -I. That version was made as a (bigger) joke, though.

                                                    Comment

                                                    • GrouchyAdmin
                                                      Now choke yourself!
                                                      • Apr 2006
                                                      • 12085

                                                      #27
                                                      Code:
                                                      <html>
                                                      <head>
                                                      <Title>404 Test Thingy or whatever</title>
                                                      </head>
                                                      <body bgcolor="#ffffff" text="#000000" link="#0000ff">
                                                      <br>
                                                      <form method="post">
                                                        <div align="center"><strong>Test URLs:</strong><br>
                                                            <textarea name="urls" id="urls" cols="45" rows="5"><?=isset($_REQUEST['urls'])?$_REQUEST['urls']:"";?></textarea>
                                                          <br>
                                                          <input type="submit" name="submit" id="submit" value="Check Response">
                                                        </div>
                                                      </form>
                                                      <?php
                                                      // This is hardly an example of good PHP.  Ugh.
                                                      @require_once("class.curl.php");
                                                      // trim() to get rid of errant enter keys.
                                                      $myurls = (isset($_REQUEST['urls'])?explode("\n", trim($_REQUEST['urls'])): array());
                                                      foreach ($myurls as $url) {
                                                        // lame
                                                        $search="";
                                                        $breakshit = @explode("|", $url);
                                                        if (!empty($breakshit["1"])) {
                                                          $url = $breakshit["0"];
                                                          $search = $breakshit["1"];
                                                        }
                                                        // use our cURL class.
                                                        $curlInit = new curl($url);
                                                        // Make sure we don't follow redirects.
                                                        $curlInit->setopt(CURLOPT_FOLLOWLOCATION, FALSE) ;
                                                        $curlInit->setopt(CURLOPT_RETURNTRANSFER, TRUE) ;
                                                        // Do it.
                                                        $return = $curlInit->exec();
                                                        // If we returned a connection error, say so.
                                                        if ($myError = $curlInit->hasError()) {
                                                          echo "ERR: $url ($myError)<br>\n";
                                                        } else {
                                                          // Reinit our array
                                                          if (!eregi($search, $return)) {
                                                                 echo "<font color='red'>Did not find &quot;".$search."&quot;</font>: <a href='$url' target='_new'>[link]</a> $url<br>\n";
                                                          }
                                                        }
                                                        // We're done, close the socket.
                                                        $curlInit->close();
                                                      }
                                                      ?>
                                                      </body>
                                                      </html>
                                                      This one lets you search for a specific word in the full text of the html. It uses eregi rather than preg, because I hate perl's regex.

                                                      Format:
                                                      http://site.com/|searchterm

                                                      If searchterm is empty, it doesn't fall back to 404. I don't feel like actually turning this pile of shit code into something worthwhile. I'm not bored anymore.

                                                      Comment

                                                      • Mr Pheer
                                                        So Fucking Banned
                                                        • Dec 2002
                                                        • 22083

                                                        #28
                                                        next time I think I'll just make a thread called, spam me with your PHP code...

                                                        Comment

                                                        • pr0
                                                          rockin tha trailerpark
                                                          • May 2001
                                                          • 23088

                                                          #29
                                                          Originally posted by Mr Pheer
                                                          next time I think I'll just make a thread called, spam me with your PHP code...

                                                          na that only works at 4am when programmers are still up & trying anything they can to get sleepy...like right now
                                                          __________
                                                          Loadedca$h - get sum! - Revengebucks - mmm rebills! - webair (gotz sErVrz)

                                                          Comment

                                                          • k0nr4d
                                                            Confirmed User
                                                            • Aug 2006
                                                            • 9231

                                                            #30
                                                            i dont feel like reading through all this, but are we having another one of those contests to see who can do this more inefficiently again?
                                                            Mechanical Bunny Media
                                                            Mechbunny Tube Script | Mechbunny Webcam Aggregator Script | Custom Web Development

                                                            Comment

                                                            • Iron Fist
                                                              Too lazy to set a custom title
                                                              • Dec 2006
                                                              • 23400

                                                              #31
                                                              Originally posted by k0nr4d
                                                              i dont feel like reading through all this, but are we having another one of those contests to see who can do this more inefficiently again?
                                                              i like waffles

                                                              Comment

                                                              • GrouchyAdmin
                                                                Now choke yourself!
                                                                • Apr 2006
                                                                • 12085

                                                                #32
                                                                Originally posted by k0nr4d
                                                                i dont feel like reading through all this, but are we having another one of those contests to see who can do this more inefficiently again?
                                                                That bitch Kris didn't play along so I gave up.

                                                                Comment

                                                                • mrkris
                                                                  Confirmed User
                                                                  • May 2005
                                                                  • 2737

                                                                  #33
                                                                  Originally posted by GrouchyAdmin
                                                                  That bitch Kris didn't play along so I gave up.
                                                                  sorry, I fell asleep haha

                                                                  PHP-MySQL-Rails | ICQ: 342500546

                                                                  Comment

                                                                  • gornyhuy
                                                                    Chafed.
                                                                    • May 2002
                                                                    • 18041

                                                                    #34
                                                                    Originally posted by Mr Pheer
                                                                    next time I think I'll just make a thread called, spam me with your PHP code...

                                                                    This is super rare for a tech or biz thread to be not only answered but hit with multiple versions of working code and even upgrades by request. Crazy shit.

                                                                    icq:159548293

                                                                    Comment

                                                                    • Bro Media - BANNED FOR LIFE
                                                                      MOBILE PORN: IMOBILEPORN
                                                                      • Jan 2004
                                                                      • 16502

                                                                      #35
                                                                      damn shush grouchy i just did it in a 5 mins i was tired, it worked on my dev server

                                                                      Comment

                                                                      • GrouchyAdmin
                                                                        Now choke yourself!
                                                                        • Apr 2006
                                                                        • 12085

                                                                        #36
                                                                        Originally posted by mrkris
                                                                        sorry, I fell asleep haha
                                                                        It's no fun playing in the kiddy pool. Bitch.

                                                                        Comment

                                                                        • mrkris
                                                                          Confirmed User
                                                                          • May 2005
                                                                          • 2737

                                                                          #37
                                                                          Originally posted by GrouchyAdmin
                                                                          It's no fun playing in the kiddy pool. Bitch.

                                                                          PHP-MySQL-Rails | ICQ: 342500546

                                                                          Comment

                                                                          • pornpf69
                                                                            Too lazy to set a custom title
                                                                            • Jun 2004
                                                                            • 15782

                                                                            #38
                                                                            some interesting scripts around here...

                                                                            Comment

                                                                            Working...