The image gallery has moved! The new system uses a different method of storing the photos. While trying to redirect you to the new site I found more than one possible matching album.

Try some of these links to find what you are looking for:

"; exit; } else { // see if it exists $code = get_http_response($direct_url . $album); if($code == 200 || $code == 403 || $code == 301) { #exists phpix_redirect($base_url . $album); } else { show_error_page(); } } } elseif($mode == 'view') { #see if the album has more than one instance. if it does, inform the user of available options #an oddity.. if the image is completely numeric, add "_G" $url_pic = $pic; $extension = ''; if(preg_match("/^(.*)\.(\S{3,4})$/",$pic,$matches)) { $url_pic = $matches[1]; $base_pic = $matches[1]; $extension = $matches[2]; } if(preg_match("/^\d+$/",$base_pic)) { $extra_extension = "_G"; $url_pic .= $extra_extension; } #try the base first $code = get_http_response($direct_url . $album . "/" . $url_pic . "." . $extension); if($code == 200) { #use this phpix_redirect($base_url . $album . "/$base_pic" . $extra_extension); exit; } if($have_rename != 0) { #try each one to try and find the target image for($i=0;$i<$have_rename;$i++) { $code = get_http_response($direct_url . $album . "_$i" . "/" . $url_pic . "." . $extension); if($code == 200) { phpix_redirect($base_url . $album . "_$i/$base_pic" . $extra_extension); } } show_error_page(); exit; } else { // not found show_error_page(); } } else { show_error_page(); } function show_error_page() { print " The image gallery has moved to a new location, and the image or gallery you are trying to locate could not be found.

You should be redirected to the root of my image gallery in a few seconds. If not, go here: " . RELOCATED_GALLERY_URL . " "; exit; } function phpix_redirect($url) { header("Location: $url"); exit; } function get_http_response($link) { $url_parts = @parse_url( $link ); if ( empty( $url_parts["host"] ) ) return( false ); if ( !empty( $url_parts["path"] ) ) { $documentpath = $url_parts["path"]; } else { $documentpath = "/"; } if ( !empty( $url_parts["query"] ) ) { $documentpath .= "?" . $url_parts["query"]; } $host = $url_parts["host"]; $port = $url_parts["port"]; // Now (HTTP-)GET $documentpath at $host"; if (empty( $port ) ) $port = "80"; if(DEBUG) { print "DEBUG: opening socket to $host on $port.\n

\n"; } $socket = @fsockopen( $host, $port, $errno, $errstr, 30 ); if (!$socket) { return(0); } else { if(DEBUG) { print "DEBUG:: calling HEAD ".$documentpath." HTTP/1.0\r\nHost: $host\n

\n"; } fwrite ($socket, "HEAD ".$documentpath." HTTP/1.0\r\nHost: $host\r\n\r\n"); $http_response = fgets( $socket, 22 ); if(DEBUG) { print "DEBUG:: got http response: [$http_response]\n

\n"; } fclose( $socket ); if(preg_match("/(\d{3})/",$http_response,$matches)) { return $matches[1]; } else { return 0; } } } ?>