0 && ($i%$size)==0) { $j++; } $retval[$j][$i%$size] = (empty($array[$i])) ? $fill : $array[$i]; } } return $retval; } // }}} function authorized() { // {{{ global $config; $r=$u=$p=$a=false; $remember = ( linkex::get( 'remember', $_REQUEST, 0 ) == 1 ); if ( ( $u = linkex::get( 'username', $_POST, false ) ) && ( $p = linkex::get( 'password', $_POST, false ) ) ) { $r=true; } else if ( $a = linkex::get( '_authcookie', $_SESSION, false ) ) { $r=false; } else if ( $a = linkex::get( '_authcookie', $_COOKIE, false ) ) { $remember=true; $r=false; } $path = dirname( linkex::get( 'SCRIPT_NAME', $_SERVER, '/' ) ); if ( ( $u !== false && $p !== false ) || ( $a !== false ) ) { if ( md5( $u .'---'. $p ) == $config->password || $a == $config->password ) { $_SESSION['_authcookie'] = $config->password; if ( $remember ) { setcookie( '_authcookie', $config->password, time()+60*60*24*30, $path ); } if ( $r ) { linkex::redirect( $_SERVER['REQUEST_URI'] ); } return true; } else { setcookie( '_authcookie', '', time() - 3600, $path ); unset( $_SESSION['_authcookie'] ); return false; } } else { setcookie( '_authcookie', '', time() - 3600, $path ); unset( $_SESSION['_authcookie'] ); return false; } } // }}} function buildquery( $array ) { // {{{ $retval = array(); foreach( $array AS $k=>$v ) { $retval[] = urlencode( $k ).'='.urlencode( $v ); } return join( '&', $retval ); } // }}} function categories( $all = false, $checkslots=false ) { // {{{ $categories = array(); $cids = linkex::listfiles( BASEDIR . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR . 'categories' . DIRECTORY_SEPARATOR ); foreach( $cids AS $cid ) { $c = new category( $cid ); if ( ( $all || $c->public == 1 ) && ( !$checkslots || ( $checkslots && $c->slots > 0 && $c->links() < $c->slots ) ) ) { $categories{ $cid } = $c->name; } unset( $c ); } return $categories; } // }}} function compareIPs( $a, $b ) { // {{{ a can be 127., 127.0, 127.0.0, 127.0.0.1, or a hostname if ( !preg_match( '/(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})/', $a ) ) { $a = linkex::gethostbyname( $a ); } if ( !preg_match( '/(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})/', $b ) ) { $b = linkex::gethostbyname( $b ); } $a = explode( '.', $a ); $b = explode( '.', $b ); for( $i=0; $ilinkbotdisregardwww == 1 ) { $a = str_replace( 'www.', '', $a ); $b = str_replace( 'www.', '', $b ); } if ( $config->linkbotignoretrailingslash == 1 ) { $a = rtrim( $a, '/' ); $b = rtrim( $b, '/' ); } return strcmp( $a, $b ); } // }}} function checkbox( $val ) { // {{{ return ( intval( $val ) != 0 ) ? 'checked="checked"':''; } // }}} function du( $dir ) { // {{{ $s = @stat( $dir ); $space = linkex::get( 'size', $s, 0 ); if ( is_dir( $dir ) ) { $dh = opendir( $dir ); while ( ( $file = readdir( $dh ) ) !== false ) { if ( !in_array( $file, array( '.', '..' ) ) ) { $space += linkex::du( rtrim( $dir, '/' ) .'/'. $file ); } } closedir( $dh ); } return $space; } // }}} function elapsed( $seconds ) { // {{{ $retval = array( 'Y' => 0, 'm' => 0, 'd' => 0, 'H' => 0, 'i' => 0, 's' => 0, 'nice' => '' ); // Years ( 60*60*24*365 ) = 31536000 seconds if ( $seconds > 31536000 ) { $retval{'Y'} = floor( $seconds / 31536000 ); $seconds = $seconds - ( $retval{'Y'} * 31536000 ); $retval{'nice'} = $retval{'Y'} . ' year' . ( $retval{'Y'}>1?'s':'' ); } // Months ( 60*60*24*30 ) = 2592000 if ( $seconds > 2592000 ) { $retval{'m'} = floor( $seconds / 2592000 ); $seconds = $seconds - ( $retval{'m'} * 2592000 ); $retval{'nice'} .= ( strlen( $retval{'nice'} ) > 0 ? ', ':'' ) . $retval{'m'} . ' month' . ( $retval{'m'}>1?'s':'' ); } // Days ( 60*60*24 ) = 86400 if ( $seconds > 86400 ) { $retval{'d'} = floor( $seconds / 86400 ); $seconds = $seconds - ( $retval{'d'} * 86400 ); $retval{'nice'} .= ( strlen( $retval{'nice'} ) > 0 ? ', ':'' ) . $retval{'d'} . ' day' . ( $retval{'d'}>1?'s':'' ); } // Hours ( 60*60 ) = 3600 if ( $seconds > 3600 ) { $retval{'H'} = floor( $seconds / 3600 ); $seconds = $seconds - ( $retval{'H'} * 3600 ); $retval{'nice'} .= ( strlen( $retval{'nice'} ) > 0 ? ', ':'' ) . $retval{'H'} . ' hour' . ( $retval{'H'}>1?'s':'' ); } // Minutes ( 60 ) = 60 if ( $seconds > 60 ) { $retval{'i'} = floor( $seconds / 60 ); $seconds = $seconds - ( $retval{'i'} * 60 ); $retval{'nice'} .= ( strlen( $retval{'nice'} ) > 0 ? ', ':'' ) . $retval{'i'} . ' minute' . ( $retval{'i'} > 1 ? 's':'' ); } // Seconds 0 if ( $seconds >= 0 ) { $retval{'s'} = $seconds; $retval{'nice'} .= ( strlen( $retval{'nice'} ) > 0 ? ', ':'' ) . $retval{'s'} . ' second' . ( $retval{'s'}>1?'s':'' ); } return $retval; } // }}} function expandlink( $link, $baseurl ) { // {{{ preg_match( "'^[^\?]+'", $baseurl.'/', $res ); $res = preg_replace( "|/[^\/\.]+\.[^\/\.]+$|", '', $res[0] ); $res = rtrim( $res, '/' ); if ( ( $root = @parse_url( $res ) ) ) { $root = $root['scheme'] .'://'. $root['host']; } else { // fixme // die( 'Unable to parse: '.$res ); $root = 'http://'; } $search = array( "|^(\/)|i", "|^(?!http://)(?!mailto:)|i", "|/\./|", "|/[^\/]+/\.\./|" ); $replace = array( $root .'/', $res . '/', '/', '/' ); return preg_replace( $search, $replace, $link ); } // }}} function fetch( $url, $params=array() ) { // {{{ global $config; if ( ( $host = @parse_url( $url ) ) && linkex::get( 'host', $host, false ) !== false ) { $po = linkex::get( 'port', $host, '80' ); $ho = linkex::get( 'host', $host, '' ); $pa = linkex::get( 'path', $host ); $pa = ( strlen( $pa ) == 0 ) ? '/':$pa; $qu = linkex::get( 'query', $host, '' ); $pa.= ( strlen( $qu ) == 0 ) ? '':'?'.$qu; $ua = linkex::get( 'agent', $params, $config->linkbotagent ); $h = array(); $h[]= linkex::get( 'method', $params, 'GET' ).' '.$pa.' HTTP/1.0'; $h[]= 'Host: '.$ho; $h[]= 'User-Agent: '.$ua; $h[]= 'Connection: close'; if ( linkex::get( 'method', $params, 'GET' ) == 'POST' && strlen( linkex::get( 'data', $params, '' ) ) > 0 ) { $h[]= 'Content-Length: '.strlen( linkex::get( 'data', $params, '' ) ); $h[] = 'Content-Type: application/x-www-form-urlencoded'; } $header = join( "\r\n", $h ) . "\r\n\r\n"; if ( ( $data = linkex::get( 'data', $params, false ) ) !== false ) { $header .= $data; } $buffer = ''; $fp = @fsockopen ( $ho, $po, $errno, $error, linkex::get( 'timeout', $params, 3 ) ); if ( !$fp ) { return array( 'URL' => $url, 'error' => 'Socket error: '.$error.' ['.$errno.']' ); } else { fputs( $fp, $header ); while( !feof( $fp ) ) { $buffer .= fgets( $fp, 1024 ); } fclose( $fp ); /// buffer holder nu hele resultatet, incl headers etc if ( preg_match( '/^HTTP\/(\d+\.\d+)\s+(\d{3})\s+(.*)/i', $buffer, $res ) === false ) { return array( 'URL' => $url, 'error' => 'Invalid HTTP response ('.substr( $buffer,0,30).')' ); } else { switch ( $res[2] ) { case 200: /// ok /// strip off the headers $res = explode( "\n\n", str_replace( chr( 13 ), '', $buffer ) ); if ( sizeof( $res ) >= 2 ) { $headers = array_shift( $res ); if ( function_exists( 'utf8_encode' ) ) { $contents = utf8_encode( join( "\n\n", $res ) ); } else { $contents = join( "\n\n", $res ); } return array( 'URL' => $url, 'headers' => $headers, 'contents' => $contents ); } else { return array( 'URL' => $url, 'contents' => utf8_encode( $buffer ) ); } break; case 301: case 302: /// maybe redirect? if ( !preg_match( '/location\:\s+(.*)/i', $buffer, $redir ) ) { return array( 'URL' => $url, 'error' => $res[2].' but no redirect' ); } else { $url = $redir[1]; if ( !preg_match( '"^http"i', $url ) ) { $url = 'http://'.$ho.'/'.ltrim( $url, '/' ); } if ( ( $h = @parse_url( $url ) ) === false ) { return array( 'URL' => $url, 'error' => $res[2].' but unparsable URL' ); } else { if ( str_replace( 'www.', '', strtolower( linkex::get( 'host', $h, '' ) ) ) != str_replace( 'www.','', strtolower( $ho ) ) ) { return array( 'URL' => $url, 'error' => $res[2].' but to external site ('.$h{'host'}.')' ); } else { return linkex::fetch( trim( $url ) ); } } } break; default: /// not good return array( 'URL' => $url, 'error' => $res[2].' '.trim( $res[3] ) ); break; } } } } else { return array( 'URL' => $url, 'error' => 'Unparsable URL' ); } } // }}} function fileget( $file, $default=null ) { // {{{ if ( file_exists( $file ) ) { if ( $fp = @fopen( $file, 'r' ) ) { $locked = ( @flock( $fp, LOCK_EX ) ) ? true:false; // $default = fread( $fp, filesize( $file ) ); $default = ''; while ( !feof( $fp ) ) { $default .= fread( $fp, 1024*1024 ); } if ( $locked ) { @flock( $fp, LOCK_UN ); } fclose( $fp ); } } return $default; } // }}} function fileput( $file, $con ) { // {{{ if ( $fp = @fopen( $file, 'w' ) ) { $locked = ( @flock( $fp, LOCK_EX ) ) ? true:false; $default = fwrite( $fp, $con ); //, strlen( $con ) ); if ( $locked ) { @flock( $fp, LOCK_UN ); } @fclose( $fp ); return ( intval( $default ) > 0 ); } else { return false; } } // }}} function flush() { // {{{ echo str_pad('',4096)."\n"; flush(); usleep( 500000 ); } // }}} function genID() { // {{{ $id = linkex::fileget( BASEDIR . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR .'uid' ); $id++; linkex::fileput( BASEDIR . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR .'uid', $id ) or die( "[Fatal Error: Unable to write to UID file]" ); return $id; } // }}} function get( $key, $array, $default=null ) { // {{{ if ( is_array( $array ) && in_array( $key, array_keys( $array ) ) ) { $default = $array{ $key }; } return $default; } // }}} function getDomain( $var ) { // {{{ $var = strtolower( $var ); if ( ( $pos = strpos( $var, '@' ) ) !== false ) { // Email $domain = substr( $var, $pos + 1 ); } else { // URL $domain = @parse_url( $var ); $domain = linkex::get( 'host', $domain, 'unparseable' ); } return $domain; } // }}} function gethostbyname( $dom, $force=false ) { // {{{ $dom = strtolower( trim( $dom ) ); $data = array(); if ( file_exists( BASEDIR . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'ips' ) && ( $data = linkex::fileget( BASEDIR . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'ips' ) ) && ( $data = linkex::unserialize( $data ) ) ) { if ( ( $force === false ) && ( $ipinfo = linkex::get( $dom, $data, false ) ) !== false && ( time() - linkex::get( 'date', $ipinfo, 0 ) ) < 604800 && ( $ip = linkex::get( 'ip', $ipinfo, false ) ) !== false ) { unset( $data ); return $ip; } } $ip = gethostbyname( $dom ); $data{ $dom } = array( 'date' => time(), 'ip' => $ip ); linkex::fileput( BASEDIR . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'ips', trim( serialize( $data ) ) ); unset( $data ); return $ip; } // }}} function getLinks( $str, $baseurl ) { // {{{ $thisdom = linkex::getDomain( $baseurl ); preg_match_all( "'<\s*a.*>(.*)<\s*/\s*a\s*>'Umis", $str, $res ); $links = array(); for( $i=0; $i' ); } $retval = ''; for($i=$pos+$d;$i0 && $haystack{$i-1} == '\\' ) );$retval.=$haystack{$i}, $i++ ) {} foreach( $end AS $c ) { $retval = str_replace( '\\'.$c, $c, $retval ); } return $retval; } else { return $default; } } /// }}} function glob( $dir, $regex ) { // {{{ $files = array(); if ( $d = @opendir( $dir ) ) { while ( false !== ( $file = readdir( $d ) ) ) { if ( preg_match( '|' . $regex . '|i', $file ) ) { $files[] = $file; } } } return $files; } // }}} function installed() { // {{{ return ( is_dir( BASEDIR . DIRECTORY_SEPARATOR .'data' ) && is_dir( BASEDIR . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR . 'backup' . DIRECTORY_SEPARATOR ) && is_dir( BASEDIR . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR ) && is_dir( BASEDIR . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR . 'categories' . DIRECTORY_SEPARATOR ) && is_dir( BASEDIR . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR . 'blacklist' . DIRECTORY_SEPARATOR ) && is_dir( BASEDIR . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR . 'links' . DIRECTORY_SEPARATOR ) && is_dir( BASEDIR . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR . 'output' . DIRECTORY_SEPARATOR ) ); } // }}} function listfiles( $dir, $ext=array() ) { // {{{ $retval = array(); if ( is_dir( $dir ) ) { if ( $dh = opendir( $dir ) ) { while ( ( $file = readdir( $dh ) ) !== false ) { if ( filetype( rtrim( $dir, DIRECTORY_SEPARATOR ) .DIRECTORY_SEPARATOR. $file ) == 'file' ) { $retval[] = $file; } } } } return $retval; } // }}} function log( $level, $type, $str ) { // {{{ $file = 'linkex.log'; $log = sprintf( "[%s] [level=%d] [%s] %s\n", date( 'Y-m-d H:i:s' ), $level, $type, $str ); $fp = fopen( BASEDIR . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR . 'logs' . DIRECTORY_SEPARATOR . $file, 'a' ); flock( $fp, LOCK_EX ); fwrite( $fp, $log ); fclose( $fp ); } // }}} function map( $fun, $arr ) { // {{{ $retval = array(); foreach( $arr AS $k=>$v ) { $retval[ $k ] = $fun( $v ); } return $retval; } // }}} function mail( $to, $sub, $body ) { // {{{ global $config; $headers = array(); $headers[] = 'X-Mailer: LinkEX/20071229'; if ( strlen( $config->email ) > 0 ) { $headers[] = sprintf( 'From: LinkEX @ %s <%s>', linkex::get( 'HTTP_HOST', $_SERVER, linkex::getdomain( $config->url ) ), $config->email ); $headers[] = sprintf( 'Reply-To: %s', $config->email ); } return mail( $to, $sub, $body, join( "\r\n", $headers ) ); } // }}} function redirect( $url, $code=301 ) { // {{{ $resp = array( 301 => 'HTTP/1.1 301 Moved Permanently', 404 => 'HTTP/1.1 404 Not Found' ); if ( ( $resp = linkex::get( $code, $resp, false ) ) !== false ) { header( $resp ); } header( 'location: '.$url ); exit; } // }}} function selector( $name, $list, $selected=null, $multiple=true, $forcetype=null, $extra=null, $sep='
' ) { /// {{{ $type = ( $multiple ) ? 'checkbox':'radio'; $type = ( sizeof( $list ) > 5 ) ? 'select':$type; if ( $forcetype && in_array( $forcetype, array( 'checkbox', 'radio', 'select' ) ) ) { $type = $forcetype; } $extra['class'] = $type.' '.linkex::get( 'class', $extra, '' ); if ( $extra ) { $buffer=array(); foreach( $extra AS $k=>$v ) { $buffer[] = sprintf( '%s="%s"', $k, $v ); } $extra=' '.join( ' ', $buffer ); } else { $extra=''; } $formname = ( $multiple ) ? $name.'[]' : $name; $buffer = ''; if ( $type == 'select' ) { $buffer .= sprintf( ' %s%s', $formname, $id, ($ck)?' checked="checked"':'', $extra, $txt, $sep ); } elseif ( $type == 'radio' ) { $buffer .= sprintf( '%s', $formname, $id, ($ck)?' checked="checked"':'', $extra, $txt, $sep ); } } if ( $type == 'select' ) { $buffer .= ''; } return $buffer; } /// }}} function serialize( $val ) { // {{{ return serialize( $val ); } // }}} function sort( &$array, $field, $order='desc' ) { // {{{ if ( $field == 'random' ) { shuffle( $array ); } else { $GLOBALS['sortby'] = $field; usort( $array, array( 'linkex', 'usort' ) ); if ( $order == 'desc' ) { $array = array_reverse( $array ); } } } // }}} function stripcomments( $con ) { // {{{ $con = preg_replace( '||Umis', '', $con ); $con = preg_replace( '||Umis', '', $con ); $con = preg_replace( '||Umis', '', $con ); return $con; } // }}} function substr( $str, $len, $pad='..' ) { // {{{ if ( strlen( $str ) > $len ) { return substr( $str, 0, $len - strlen( $pad ) ) . $pad; } else { return $str; } } // }}} function truncate( $str, $len, $txt='..' ) { // {{{ if ( strlen( $str ) > ( $len-strlen( $txt ) ) ) { return substr( $str, 0, $len-strlen( $txt ) ).$txt; } else { return $str; } } // }}} function unserialize( $str ) { // {{{ $retval = @unserialize( $str ); if ( $retval !== false ) { return $retval; } else { // Attempt to fix it $str = preg_replace('!s:(\d+):"(.*?)";!e', "'s:'.strlen('$2').':\"$2\";'", trim( $str ) ); $retval = @unserialize( $str ); if ( $retval !== false ) { return $retval; } else { echo '[Fatal error in linkex::unserialize( "'. $str .'" )]'; } } } // }}} function usort( $a, $b ) { // {{{ if ( isset( $GLOBALS['sortby'] ) && strlen( $GLOBALS['sortby'] ) > 0 ) { $f = $GLOBALS['sortby']; if ( is_object( $a ) && isset( $a->$f ) ) { $aa = $a->$f; } else if ( is_array( $a ) && isset( $a[$f] ) ) { $aa = $a[$f]; } else { $aa = $a; } if ( is_object( $b ) && isset( $b->$f ) ) { $bb = $b->$f; } else if ( is_array( $b ) && isset( $b[$f] ) ) { $bb = $b[$f]; } else { $bb = $b; } switch( $f ) { case 'rdomip': $aa = sprintf( '%u', ip2long( $aa ) ); $bb = sprintf( '%u', ip2long( $bb ) ); break; case 'rdom': $aa = str_replace( 'www.', '', strtolower( $aa ) ); $bb = str_replace( 'www.', '', strtolower( $bb ) ); break; case 'anchor': $aa = strtolower( $aa ); $bb = strtolower( $bb ); break; } if ($aa == $bb) { return 0; } return ($aa < $bb) ? -1 : 1; } else { return 0; } } // }}} function verifybacklinks( $ids=array(), $callback=null ) { // {{{ global $config; $retval = array( 'starttime' => time(), 'links' => array(), 'categories' => array() ); foreach( $ids AS $id ) { $l = new link( $id ); $l->updateIPs(); $buffer = array( 'action' => 'link', 'id' => $l->id, 'rdom' => $l->rdom, 'rdomip' => $l->rdomip, 'rurl' => $l->rurl, 'skipcheck' => $l->skipcheck, 'skippagerank' => $l->skippagerank, 'minpagerank' => ( $l->minpagerank != -1 ) ? $l->minpagerank : $config->minpagerank, 'oldstatus' => $l->status, 'oldpagerank' => $l->pagerank ); if ( $l->skipcheck == 0 ) { $pr = $l->getPageRank(); $buffer{'res'} = $l->hasBacklink(); $buffer{'code'} = ( !is_string( linkex::get( 'reason', $buffer{'res'}, null ) ) ) ? '200 OK' : $l->laststatus; if ( $l->status != 4 ) { $l->status = ( ( $pr >= ( ( $l->minpagerank != -1 ) ? $l->minpagerank : $config->minpagerank ) ) && ( linkex::get( 'res', $buffer{'res'}, -1 ) == 0 ) ) ? 1:2; } $l->save( false ); } $buffer{'status'} = $l->status; $buffer{'pagerank'} = $l->pagerank; $retval{'links'}[] = $buffer; unset( $l ); if ( $callback != null && function_exists( $callback ) ) { call_user_func( $callback, $buffer ); } unset( $buffer ); } // Rebuild categories $categories = linkex::listfiles( BASEDIR . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR . 'categories' . DIRECTORY_SEPARATOR ); foreach( $categories AS $cid ) { $c = new category( $cid ); $c->generate(); $buffer = array( 'action' => 'category', 'id' => $cid, 'name' => $c->name ); $retval{'categories'}[] = $buffer; unset( $c ); if ( $callback != null && function_exists( $callback ) ) { call_user_func( $callback, $buffer ); } unset( $buffer ); } $retval{'endtime'} = time(); return $retval; } // }}} function sum( $array = array() ) { // {{{ $retval = 0; foreach( $array AS $a ) { $retval += $a; } return $retval; } // }}} function yesno( $val ) { // {{{ return ( $val ) ? 'Yes':'No'; } // }}} } class template { function about() { // {{{ global $config; if ( LOGGEDIN ) { $phpver = phpversion(); $zendver = zend_version(); $uname = php_uname( 's r' ); $du = round( linkex::du( BASEDIR . DIRECTORY_SEPARATOR . 'data' ) / 1024, 2 ).'KB'; $links = sizeof( linkex::listfiles( BASEDIR . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR . 'links' . DIRECTORY_SEPARATOR ) ); $installdate = date( $config->dateformat, $config->installdate ); if ( function_exists( 'gd_info' ) ) { $gd = gd_info(); $gd = sprintf( '%s - GIF Support: %s', $gd{'GD Version'}, ( ( $gd{'GIF Create Support'} ) ? 'enabled':'unsupported, using plain text for CAPTCHA if used' ) ); } else { $gd = 'Not installed, using plain text for CAPTCHA if used.'; } echo "
\n\t
\n\t\tServer info\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t
PHP version:{$phpver}
Zend version:{$zendver}
GD Info:{$gd}
Server OS:{$uname}
\n\t
\n
\n\n
\n\t
\n\t\tLinkEX info\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t
LinkEX version:20071229
Current version: (Force upgrade)
Database size:{$du}
Links:{$links}
Install date:{$installdate}
\n\t
\n
\n\n\n\n"; } else { echo "
\n\tPowered by LinkEX\n\t
\n\t\tThis site is powered by LinkEX, a free script that will take care of accepting link exchange requests, \n\t\tand, if needed, making sure a link back is present.
\n\t\t
\n\t\tIf you run a website, you can have this script also. Head over to linkex.dk, \n\t\tand get your free copy.
\n\t\t
\n\t\t
Features
\n\t\t
    \n\t\t\t
  • Free! This script is free. No hidden fees, no nothing.
  • \n\t\t\t
  • Easy to install - upload 1 (one) file, fill out the basic settings, and you are good to go.
  • \n\t\t\t
  • One click updates. Update the script, just by a single click. The script will fetch the latest release, install it, making sure you are up to date at all times.
  • \n\t\t\t
  • Advancend link robot. You choose what sites to check for backlinks, and the bot will make sure the link is present.
  • \n\t\t\t
  • Google PageRank™ check. The script will show you the PageRank™ of all your link partners.
  • \n\t\t\t
  • And much much more..
  • \n\t\t
\n\t\tHead over to linkex.dk to read more\n\t
\n
\n"; } } // }}} function footer() { // {{{ return "\t\t\t\n\t\t\t
\n\t\t\t\tv.20071229 © linkex.dk 2006-2007\n\t\t\t
\n\t\t\n\t
_ Download Mp3/Mp3 MusicTop Chartsdownload R.E.M. music lyricdownload Leona Lewis music lyricdownload Portishead music lyricdownload Iron Maiden music lyricdownload Led Zeppelin music lyricdownload Beth Rowley music lyricdownload Mariah Carey music lyricdownload Bruce Springsteen music lyricdownload AC/DC music lyricdownload Linkin Park music lyricdownload OneRepublic music lyricdownload Bob Dylan music lyricdownload Metallica music lyricdownload The Who music lyricdownload Rihanna music lyricdownload Al Green music lyricdownload The Kooks music lyricdownload U2 music lyricdownload David Bowie music lyricdownload Prince music lyricdownload Alanis Morissette music lyricdownload Putumayo music lyricdownload Elvis Presley music lyricdownload Willie Nelson music lyricdownload Jon Bon Jovi music lyriclondon ontario vand london ontario vand difficult longhorn steel silhouette longhorn steel silhouette gather long john donut cutter long john donut cutter system linea alba rip surgery mesh linea alba rip surgery mesh contain lorentz meats minnesota lorentz meats minnesota century linea alba rip surgery mesh linea alba rip surgery mesh box louie vatan store louie vatan store except lisi harrison s childhood lisi harrison s childhood soldier lipan isd lipan isd travel livelink physical objects livelink physical objects spend lotemax side effects lotemax side effects in linerie football linerie football arrange linerie football linerie football degree london ontario vand london ontario vand how lisa ullom lisa ullom children lophira alata lophira alata or lovless marriage lovless marriage knew lodging i 71 corridor cincinatti oh lodging i 71 corridor cincinatti oh map lloyd fellows 60 elcamino lloyd fellows 60 elcamino now lophira alata lophira alata home list of telenovela s list of telenovela s finish litigious students courting justice bond litigious students courting justice bond speed litton loan chapter 13 litton loan chapter 13 gentle little dipper poolslide little dipper poolslide similar little mermaid snowglobes little mermaid snowglobes air louie vatan store louie vatan store all loafing sheds in oklahoma loafing sheds in oklahoma usual loudoun schools medication form loudoun schools medication form sight louisiana pacific 10 k louisiana pacific 10 k drink lorentz meats minnesota lorentz meats minnesota water lotrimin drys skin lotrimin drys skin brother lorentz meats minnesota lorentz meats minnesota both longboat key rentals with docks longboat key rentals with docks even lorentz meats minnesota lorentz meats minnesota hour louisanana louisanana through lindhaus vacuums lindhaus vacuums cotton loestrin 24 sample loestrin 24 sample pull los sures brooklyn los sures brooklyn free line flyer remake scottdizzle line flyer remake scottdizzle air lophira alata lophira alata out lladro girl lavender and white dress lladro girl lavender and white dress whole lotemax side effects lotemax side effects claim lois downie lois downie well lowe fs175 lowe fs175 object loudoun schools medication form loudoun schools medication form truck llease shop glenelg south australia llease shop glenelg south australia plane lisi harrison s childhood lisi harrison s childhood whose lloyd fellows 60 elcamino lloyd fellows 60 elcamino drink lovless marriage lovless marriage woman litton loan chapter 13 litton loan chapter 13 fact lord halifax 1768 election in england lord halifax 1768 election in england matter litton loan chapter 13 litton loan chapter 13 sharp litton loan chapter 13 litton loan chapter 13 what lisa gerrad lisa gerrad sit lodging i 71 corridor cincinatti oh lodging i 71 corridor cincinatti oh captain lisa nyhlen lisa nyhlen wire little tikes lightening mcqueen car bed little tikes lightening mcqueen car bed material liveops complaints liveops complaints able locusts of capitalism ark german locusts of capitalism ark german face lonnie wurn lonnie wurn keep lowe fs175 lowe fs175 be lloyd fellows 60 elcamino lloyd fellows 60 elcamino took lotemax side effects lotemax side effects group lower klamath nwr lower klamath nwr perhaps line flyer remake scottdizzle line flyer remake scottdizzle or lord talbot of malahide lord talbot of malahide think low testostarone low testostarone other louisanana louisanana appear litco mfg litco mfg wall lisa dawn aidens choice lisa dawn aidens choice went livelink physical objects livelink physical objects print livelink physical objects livelink physical objects pound linux networx cis hollywood case study linux networx cis hollywood case study invent local news biketoberfest local news biketoberfest surprise lolo ferrie lolo ferrie except liquid lengthens life poem liquid lengthens life poem every lovless marriage lovless marriage raise loutus leaf side effects loutus leaf side effects correct longhorn steel silhouette longhorn steel silhouette ease log moisture guage log moisture guage oil liquid lengthens life poem liquid lengthens life poem similar lorelle wordpress not buy extra lorelle wordpress not buy extra position london anniversary diana prinz harry speech london anniversary diana prinz harry speech house lowe fs175 lowe fs175 seem lisa hoight lisa hoight tree louis raphael mens pants louis raphael mens pants subject lloyd loom bedroom chair lloyd loom bedroom chair apple linux networx cis hollywood case study linux networx cis hollywood case study pound linerie football linerie football excite locusts of capitalism ark german locusts of capitalism ark german surprise little tikes lightening mcqueen car bed little tikes lightening mcqueen car bed single litworks university litworks university moment liquidvideo flat panel lcd monitor liquidvideo flat panel lcd monitor that lotrimin drys skin lotrimin drys skin moon longview texas census longview texas census count lori macarthur lafayette lori macarthur lafayette far lorain cranes load chart lorain cranes load chart together lococh lococh east lori kassel lori kassel each los sures brooklyn los sures brooklyn month lladro girl lavender and white dress lladro girl lavender and white dress support los angles earthquake martial law los angles earthquake martial law possible low testostarone low testostarone wait louisiana pacific 10 k louisiana pacific 10 k parent louisiana pacific 10 k louisiana pacific 10 k gather lisa ullom lisa ullom parent lower klamath nwr lower klamath nwr dream longhorn steel silhouette longhorn steel silhouette many lloyd fellows 60 elcamino lloyd fellows 60 elcamino finish lisa hoight lisa hoight office lori kassel lori kassel ran log moisture guage log moisture guage thick linux networx cis hollywood case study linux networx cis hollywood case study pull lonnie wurn lonnie wurn lead lonnie wurn lonnie wurn tell lonnie wurn lonnie wurn listen lisa hoight lisa hoight bell livelink physical objects livelink physical objects gentle lorelle wordpress not buy extra lorelle wordpress not buy extra colony lotrimin drys skin lotrimin drys skin stead los angles earthquake martial law los angles earthquake martial law stone liquid lengthens life poem liquid lengthens life poem soon los sures brooklyn los sures brooklyn held lord halifax 1768 election in england lord halifax 1768 election in england base lisa hoight lisa hoight camp lotemax side effects lotemax side effects fly louis garneau evolution gloves louis garneau evolution gloves flow listing of 5013c groups listing of 5013c groups success lisa gerrad lisa gerrad divide longaberger basket company dresden ohio longaberger basket company dresden ohio circle loutus leaf side effects loutus leaf side effects favor linux thumprint authentication linux thumprint authentication silver lindsay chambless lindsay chambless carry lipo high capacity lipo high capacity like line flyer remake scottdizzle line flyer remake scottdizzle develop local phone prefixes for fredericksburg va local phone prefixes for fredericksburg va know lockin amplifier tutorial lockin amplifier tutorial town lisinopril and vulvar itching lisinopril and vulvar itching pattern lorelle wordpress not buy extra lorelle wordpress not buy extra wonder litigious students courting justice bond litigious students courting justice bond lot listing of 5013c groups listing of 5013c groups own lohse genealogy germany lohse genealogy germany fine lotrimin drys skin lotrimin drys skin operate loriset loriset gave lonnie wurn lonnie wurn during louisanana louisanana list louis garneau evolution gloves louis garneau evolution gloves decimal lipsmackers lipsmackers captain lofts inlynchburg virginia lofts inlynchburg virginia answer lisa nyhlen lisa nyhlen use lord halifax 1768 election in england lord halifax 1768 election in england letter lisa ullom lisa ullom gray little arpil little arpil friend low dyastolic blood pressure low dyastolic blood pressure grew lonnie wurn lonnie wurn game linux networx cis hollywood case study linux networx cis hollywood case study after lonnie wurn lonnie wurn deep linn high therm linn high therm plan longview texas census longview texas census enough los sures brooklyn los sures brooklyn girl lotrimin drys skin lotrimin drys skin fight locusts of capitalism ark german locusts of capitalism ark german night louisville ornamental iron louisville ornamental iron shine lisa dysert lisa dysert track line of succesion line of succesion present look up dodaac look up dodaac fear loftness specialized equipment loftness specialized equipment populate lori christine atchley deceased lori christine atchley deceased matter loogies loogies minute lori nowak medina ohio lori nowak medina ohio wire louiseville motor speedway louiseville motor speedway count lisa aming lisa aming fat little black sambo audio book little black sambo audio book song little szechuan st paul little szechuan st paul modern lisa tjornehoj lisa tjornehoj many lord baden powell funeral description lord baden powell funeral description ring lindie hauge art lindie hauge art fat lisa smartt lisa smartt race low backpain instudents low backpain instudents bad longfellow serenade neil diamond youtube longfellow serenade neil diamond youtube home lisa loree mccloud lisa loree mccloud pound log cabin motel smithfield nc log cabin motel smithfield nc branch lite on wlan wireless drivers lite on wlan wireless drivers word loans for bad credit etobicoke loans for bad credit etobicoke piece littlest pet shop pairs racoon littlest pet shop pairs racoon fire linea oder neisse linea oder neisse wide liveaboard marinas mn liveaboard marinas mn city lotto ilinois lotto ilinois fill louis cabral mississippi louis cabral mississippi only lowes douglasvill ga lowes douglasvill ga wave longhorn server 2008 crack longhorn server 2008 crack fig los ponchos flint mi los ponchos flint mi gone louisville ky rodney starling louisville ky rodney starling clear lisa tuttle lake placid fl lisa tuttle lake placid fl tree lobulaire lobulaire insect lovington wildcats lovington wildcats turn louisville stomach wax louisville stomach wax rail loro parque foundation loro parque foundation blue louisville slugger dynasty louisville slugger dynasty part little red dress battle star galactica little red dress battle star galactica spread los gatos running trails los gatos running trails thing lita s divine creamery lita s divine creamery sail louis van wyk infidelity louis van wyk infidelity corner louisanna pu louisanna pu start louis javois louis javois teach louisa general district court traffic louisa general district court traffic danger loituma leva s polka lyrics loituma leva s polka lyrics basic loeg nautilus loeg nautilus your listen to paul wall trill listen to paul wall trill weight loveline dr drew adam loveline dr drew adam sentence lippincott s review for nclex rn lippincott s review for nclex rn hole louis kravitz and associates louis kravitz and associates sit loosing my mucus plug loosing my mucus plug these louisiana lunch breaks and breaks louisiana lunch breaks and breaks line lineman drawings lineman drawings radio logan andrew sekulow said logan andrew sekulow said engine
caribou s gingerbread recipe

caribou s gingerbread recipe

my hardboiled eggs low carb recipe

hardboiled eggs low carb recipe

noun african american food guide pyramid

african american food guide pyramid

law recipe for gooseberry fool

recipe for gooseberry fool

silver genetically modified or genetically engineered foods

genetically modified or genetically engineered foods

shine peach pie recipe winner

peach pie recipe winner

art bernardin recipes

bernardin recipes

brought examples of probiotics in food

examples of probiotics in food

round stone crab claw dipping sauce recipe

stone crab claw dipping sauce recipe

neighbor snowy rush lunch

snowy rush lunch

do portion control food plate

portion control food plate

piece kids cooking how to measure

kids cooking how to measure

is hemp seed recipes

hemp seed recipes

friend damage by carbonated drinks

damage by carbonated drinks

course recipes of southern soul food

recipes of southern soul food

favor bed breakfast near alton towers

bed breakfast near alton towers

men cob foods

cob foods

him breakfast places in milwaukee

breakfast places in milwaukee

he dinner cruises in long beach ca

dinner cruises in long beach ca

chair serbia recipe

serbia recipe

match merlin s magic dinner theatre

merlin s magic dinner theatre

condition copy secret recipes

copy secret recipes

equal paula deen s silly salt recipe

paula deen s silly salt recipe

miss spanish foods on a menu

spanish foods on a menu

decimal the food shoppe

the food shoppe

sudden frozen food brand names

frozen food brand names

fire carrot casserole recipe

carrot casserole recipe

father wilmington nc bravo pet food

wilmington nc bravo pet food

if cooking on dvd

cooking on dvd

sky bit o honey recipe

bit o honey recipe

material simple for 1 hour recipes

simple for 1 hour recipes

west mocktails recipes

mocktails recipes

center food designers

food designers

else feeding horses flax meal

feeding horses flax meal

process honey soy flour recipe

honey soy flour recipe

energy pet food nations

pet food nations

save stadium chicken recipes

stadium chicken recipes

inch easy bean soup recipe

easy bean soup recipe

oh wiyot food

wiyot food

wall gymnosperm food

gymnosperm food

less yerevan recipes

yerevan recipes

dream guantanamo bay food

guantanamo bay food

among pork chop recipes food network tv

pork chop recipes food network tv

whose petel and cookie and recipe

petel and cookie and recipe

hair chamberlin health food

chamberlin health food

pound whole food bellevue

whole food bellevue

farm chichen casserole recipes

chichen casserole recipes

plural quiznos recipe website

quiznos recipe website

while fast food and fresh produce

fast food and fresh produce

drive products manufactured by menu foods

products manufactured by menu foods

wall milk drinks

milk drinks

build power drinks alcohol

power drinks alcohol

gas find candy recipes

find candy recipes

like lactic acid forming foods

lactic acid forming foods

neck pet food posioning

pet food posioning

sleep lemon drops recipe

lemon drops recipe

stop scottish appetizer food rocket sauce

scottish appetizer food rocket sauce

opposite food of shawnees indians

food of shawnees indians

money philippine grocers food exports inc

philippine grocers food exports inc

compare new mexico style dinner plates

new mexico style dinner plates

shoulder oster 5712 digital food steamer

oster 5712 digital food steamer

fire bed and breakfast in moraga california

bed and breakfast in moraga california

very harvest dinner invitation

harvest dinner invitation

enough food based nutritional animal supplement manufacturers

food based nutritional animal supplement manufacturers

play food processor information

food processor information

forest walpurgis night recipes

walpurgis night recipes

what chewy cookie recipes

chewy cookie recipes

dictionary creamed spinach recipes

creamed spinach recipes

special bed breakfast in ashville

bed breakfast in ashville

space doog food recall list

doog food recall list

rub beef ribs oven recipe

beef ribs oven recipe

wing recipe twice baked potatoe

recipe twice baked potatoe

stretch food imports from china

food imports from china

early michele s foods founder michele hoskins

michele s foods founder michele hoskins

either broiled pork chop recipes

broiled pork chop recipes

hundred mahimahi recipes

mahimahi recipes

person suman recipes free

suman recipes free

necessary recipe dip 7 layer mexican

recipe dip 7 layer mexican

here slim styles meal replacement drink

slim styles meal replacement drink

these list ph levels of foods

list ph levels of foods

page build picnic tables

build picnic tables

spend drink exotic recipe

drink exotic recipe

front vegeterian chinese recipes

vegeterian chinese recipes

yet cooking with children recipes

cooking with children recipes

paragraph homemade weight loss drinks

homemade weight loss drinks

hard vermouth drinks

vermouth drinks

square pomodoro recipe broth

pomodoro recipe broth

middle food delivery service columbia maryland

food delivery service columbia maryland

solve foods that turn into fat quick

foods that turn into fat quick

glad mcdonalds food prices recipes cn

mcdonalds food prices recipes cn

common recipes for salmon dishes

recipes for salmon dishes

class pet food danger

pet food danger

fresh south america food chain

south america food chain

out safe food handling salmon

safe food handling salmon

dress carrot chips recipe

carrot chips recipe

machine bed and breakfast shellsburg pa

bed and breakfast shellsburg pa

often hillsborough county food stamps

hillsborough county food stamps

care cheap meals delivered

cheap meals delivered

up homemade traditional korean recipes

homemade traditional korean recipes

own catering breakfast roswell ga

catering breakfast roswell ga

again gourment restaurant recipes

gourment restaurant recipes

season recipe for microwave rice pudding

recipe for microwave rice pudding

card fly in breakfast iowa

fly in breakfast iowa

caught recipe on making cake icing

recipe on making cake icing

hot what is traditional puerto rican foods

what is traditional puerto rican foods

hill recipe for cajun meat loaf

recipe for cajun meat loaf

month bread and dip appetizer recipes

bread and dip appetizer recipes

heavy good food grocer

good food grocer

product german breakfast pies

german breakfast pies

while mai mai recipes

mai mai recipes

number nesco recipes

nesco recipes

cover atlanta food service

atlanta food service

jump chilean food facts

chilean food facts

rope whole foods in south dakota

whole foods in south dakota

garden award winning chicken soup recipe

award winning chicken soup recipe

collect microwave play dough recipe

microwave play dough recipe

neighbor date dinners

date dinners

fear where to eat lunch in cleveland

where to eat lunch in cleveland

follow james bond food

james bond food

summer thankgiving dinner receipes

thankgiving dinner receipes

certain a recipe for susi

a recipe for susi

sheet cocktail recipe picnic basket

cocktail recipe picnic basket

people bed and breakfast michigan detroit

bed and breakfast michigan detroit

method cooking collards from smelling

cooking collards from smelling

voice puerto rican food in florida

puerto rican food in florida

for symposia on mycotoxins and food allergens

symposia on mycotoxins and food allergens

season facial face mask recipes

facial face mask recipes

system what is time for food poisoning

what is time for food poisoning

shine bacon swiss quiche recipe

bacon swiss quiche recipe

often thanksgiving dinner pictures

thanksgiving dinner pictures

exercise drinks in the time of jesus

drinks in the time of jesus

fact pane pugliese recipe

pane pugliese recipe

number pizza king pizza recipe royal feast

pizza king pizza recipe royal feast

ice ecuadorian typical foods

ecuadorian typical foods

town warm hors d oeuvres recipes

warm hors d oeuvres recipes

hill aphrodisiac sexual foods and herbs

aphrodisiac sexual foods and herbs

whether new york school of culinary arts

new york school of culinary arts

ear paula deen thanksgiving show food netwook

paula deen thanksgiving show food netwook

danger recipes lobster bisque

recipes lobster bisque

letter teppan yaki recipe

teppan yaki recipe

middle illinois food tax

illinois food tax

determine labels for food service vendors

labels for food service vendors

length potato egg cheese casserole recipe

potato egg cheese casserole recipe

little bed and breakfast get aways

bed and breakfast get aways

both cooking classes in richmond virginia

cooking classes in richmond virginia

reason healthy kid s meals

healthy kid s meals

huge shake n bake recipe

shake n bake recipe

bright adobe recipe

adobe recipe

position recipes zuchinni

recipes zuchinni

front hungry girl s kfc bowl recipe

hungry girl s kfc bowl recipe

magnet beaufort ms bed and breakfasts

beaufort ms bed and breakfasts

there wendy s fast food menu

wendy s fast food menu

wait chocolate mousse cake filling and recipes

chocolate mousse cake filling and recipes

stand list of 50 calorie foods

list of 50 calorie foods

choose foods grown in california

foods grown in california

large co2 food grade

co2 food grade

hour japanese blue berry recipe

japanese blue berry recipe

move dried bamboo salad recipe

dried bamboo salad recipe

bottom mccuistion bed and breakfast

mccuistion bed and breakfast

simple recipes panera bread soup

recipes panera bread soup

smell baked stuffed manicotti recipe

baked stuffed manicotti recipe

men pink lady apple recipes

pink lady apple recipes

discuss bobbly lee parents dinner

bobbly lee parents dinner

ocean aztec foods back in the day

aztec foods back in the day

trade recipes with camembert cheese

recipes with camembert cheese

shine recipes for party meatballs

recipes for party meatballs

star honey chocolate chip cookie recipe

honey chocolate chip cookie recipe

capital recipes that use garbonzo beans

recipes that use garbonzo beans

step crab seafood soup recipe

crab seafood soup recipe

list recipes for low fat cookies

recipes for low fat cookies

set list of the dog food recalled

list of the dog food recalled

grow alcohol drink mixed recipe

alcohol drink mixed recipe

million good recipe for yellowtail fish

good recipe for yellowtail fish

ride national media prayer breakfast

national media prayer breakfast

son barramundi cooking

barramundi cooking

afraid quick stir fry recipes

quick stir fry recipes

start food delivery kankakee ill

food delivery kankakee ill

fruit fast food in nigeria

fast food in nigeria

score chickpea flour desert recipe

chickpea flour desert recipe

loud phosphorus content in food

phosphorus content in food

light spaniard food

spaniard food

you junk food ingredients

junk food ingredients

want spicy pizza sauce recipe

spicy pizza sauce recipe

capital recipes left over beef ribs stew soup

recipes left over beef ribs stew soup

wash recipe for beef burrito

recipe for beef burrito

raise crab pasta salad recipe

crab pasta salad recipe

matter princess potato recipe

princess potato recipe

trip vegetarian stuffed peppers recipe

vegetarian stuffed peppers recipe

repeat red robbin recipe

red robbin recipe

second scrapbook food

scrapbook food

cent food source of the black bear

food source of the black bear

fine recipes using beef chuck tender steak

recipes using beef chuck tender steak

night eberhardt foods edmonton

eberhardt foods edmonton

wild recipe scottish potatoe cakes

recipe scottish potatoe cakes

heard quick romantic dinner recipes

quick romantic dinner recipes

small oasis food pantry

oasis food pantry

stop palm fruit in food

palm fruit in food

own kosher food what is halal

kosher food what is halal

collect recipe clay pot vegetable soup

recipe clay pot vegetable soup

left schwan s frozen foods

schwan s frozen foods

particular samhain sowen foods

samhain sowen foods

joy applebees mudslide recipe ice cream

applebees mudslide recipe ice cream

catch glucosamine in dog food

glucosamine in dog food

he wholesale child picnic basket