__oDb = &$oDB; $this->__oStd = &$oSTD; $this->__oDebug = &$oDEBUG; $this->__oDisplay = &$oDISPLAY; $this->__oLs = &$oLS; $this->__oI18n = &$oI18N; $this->__aSys = &$oVARS->__aSYS; $this->__aCfg = &$aCFG; $this->__aModules = &$aMODULES; } Function LoadClass( $class_name, $main=False ) { if ( $main ) { return new $class_name(); } else { return new $class_name; } } } //----------------------------------------------------// // Initialize debugger // //----------------------------------------------------// @require_once( LIBS . 'debug.lib.php' ); $oDEBUG = new DEBUG(); $oDEBUG->StartTimer( CTIMER ); define ( 'PHP_EXT', '.php' ); //----------------------------------------------------// // Load utils // //----------------------------------------------------// @require_once( INC . 'utils.inc' . PHP_EXT ); //----------------------------------------------------// // Load configuration // //----------------------------------------------------// $aCFG = _LoadConfig( CONF ); define ( 'TPL_EXT', $aCFG["TPL_EXT"] ); if ( ! @file_exists( $aCFG['PATH_BASE'].'install.lock' ) ) { _ShowError( __LINE__.': '.ERROR_NO_INSTALLATION_FOUND ); } //----------------------------------------------------// // Load classes // //----------------------------------------------------// @require_once( INC . 'vars.class' . PHP_EXT ); $oVARS = new VARS(); @require_once( INC . 'func.class' . PHP_EXT ); $oSTD = new FUNC(); //----------------------------------------------------// // Load libraries // //----------------------------------------------------// @require_once( LIBS . 'ls.lib' . PHP_EXT ); $oLS = new LS(); //----------------------------------------------------// // Create database object // //----------------------------------------------------// $_aSqlCfg = _LoadSqlConfig(); @require_once( INC . 'db.class' . PHP_EXT ); $oDB =& DB::Loader( $_aSqlCfg["DATABASE_TYPE"] ); $oDB->Connect( $_aSqlCfg ); //----------------------------------------------------// // Load display // //----------------------------------------------------// @require_once( INC . 'display.class' . PHP_EXT ); $oDISPLAY = new DISPLAY( false ); //----------------------------------------------------// // Init main class CNK // //----------------------------------------------------// $CNK = new CNK(); //----------------------------------------------------// // Get modules list // //----------------------------------------------------// $CNK->__aModules = _GetModulesList(); //----------------------------------------------------// // Grab incoming data // //----------------------------------------------------// $CNK->__aIn = $oVARS->GrabInput(); //----------------------------------------------------// // Load multilingual support // //----------------------------------------------------// @require_once( INC . 'i18n.class' . PHP_EXT ); $oI18N = new LANG( $aCFG["LANG_DEFAULT"] ); //----------------------------------------------------// // Sessions support // //----------------------------------------------------// if (strtoupper( $aCFG["SESSION_ALLOW"] )=='TRUE') { /* {{{ Create visitor session }}} */ @require_once( INC . 'session.class' . PHP_EXT ); $oSESS = new SESSION( $aCFG["SESSION_STORAGE"] ); $CNK->__sSessionId = $oSESS->SessionStart(); } //----------------------------------------------------// // Define BASE_URL // //----------------------------------------------------// if ( strtoupper( $aCFG["SESSION_ALLOW"] )=='TRUE' ) { $CNK->__sBaseUrl = $CNK->__aCfg["URL_BASE"] . 'index' . PHP_EXT . '?'.$aCFG["SESSION_IDENTID"].'='.$CNK->__sSessionId; } else { $CNK->__sBaseUrl = $CNK->__aCfg["URL_BASE"] . 'index' . PHP_EXT . '?'.$aCFG["SESSION_IDENTID"].'=0'; } //----------------------------------------------------// // Define program trace // //----------------------------------------------------// $CNK->__aIn['act'] = !array_key_exists('act',$CNK->__aIn) ? "idx" : $CNK->__aIn['act']; $CNK->__aIn['act'] = $CNK->__aIn['act'] == '' ? "idx" : $CNK->__aIn['act']; //----------------------------------------------------// // Define module to load // //----------------------------------------------------// $CNK->__sWorkingModule = $CNK->__aIn['act']; //----------------------------------------------------// // Load selected module // //----------------------------------------------------// define ( 'F_WORKING_MODULE', $CNK->__aModules[ $CNK->__sWorkingModule ].$CNK->__sWorkingModule.'.mod'.PHP_EXT ); @require ( F_WORKING_MODULE ); //----------------------------------------------------// // Final :) execution time // //----------------------------------------------------// echo "\n\n "; /* {{{ Close all }}} */ if ( strtoupper( $aCFG["SESSION_ALLOW"] )=='TRUE' ) { $oSESS->SessionClose(); } $oDB->CloseConnection(); exit; // ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ // // THE END // //++++++++++++++++++++++++++++++++++++++++++++++++++++// //-------------------------------------------------// // Convert given relative path to real path // //-------------------------------------------------// Function _RelativeToReal( $sPath ) { global $_SERVER; static $_sReturn = ''; static $_sMePath = ''; static $_aMePath = array(); $_aMePath = pathinfo( __FILE__ ); $_sMePath = $_aMePath["dirname"]; $sPath = preg_replace( "#^\.#", "", $sPath ); $_sReturn = $_sMePath.$sPath; return $_sReturn; } //-------------------------------------------------// // Shows dumped given variable // // ex: _ShowDump( $foo, '$foo', 1 ); // //-------------------------------------------------// Function _ShowDump( $sVarName, $sVarPrintName, $iMethod=1 ) { if ( $iMethod == 1 ) { echo "
";
        echo "{$sVarPrintName}:
"; var_dump( $sVarName ); echo "
"; } elseif ( $iMethod == 2 ) { echo "
";
        echo "{$sVarPrintName}:
"; print_r( $sVarName ); echo "
"; } return; } //-------------------------------------------------// // Independent FileSystemOperations class // //-------------------------------------------------// class FSO { var $__aFiles = Array(); var $__aDirs = Array(); Function _GetFiles( $sDir, $bReturn = false ) { static $_fStream; static $_sPointer; $sDir = preg_replace( "#^\.#", "", $sDir ); $sDir = preg_replace( "#/$#", "", $sDir ); if ( file_exists($sDir) ) { if ( is_dir($sDir) ) { $_fStream = opendir($sDir); while (($_sPointer = readdir($_fStream)) !== false) { if (($_sPointer != ".") && ($_sPointer != "..")) { if ( !is_dir($sDir."/".$_sPointer)) { $this->__aFiles[] = $sDir."/".$_sPointer; } } } closedir($_fStream); if ( (bool)$bReturn ) { return $this->__aFiles; } } else { return FALSE; } } else { return FALSE; } } Function _GetDirs( $sDir, $bReturn = false ) { static $_fStream; static $_sPointer; $sDir = preg_replace( "#^\.#", "", $sDir ); $sDir = preg_replace( "#/$#", "", $sDir ); if ( file_exists($sDir) ) { if ( is_dir($sDir) ) { $_fStream = opendir($sDir); while (($_sPointer = readdir($_fStream)) !== false) { if ( ($_sPointer != ".") && ($_sPointer != "..") ) { if ( is_dir($sDir.'/'.$_sPointer) ) { $this->__aDirs[] = $sDir.'/'.$_sPointer; } elseif ( is_file($sDir.'/'.$_sPointer) ) { next; } } } closedir($_fStream); if ( (bool)$bReturn ) { return $this->__aDirs; } } else { _ShowError( ERROR_FS_TARGET_IS_NOT_A_DIR ); } } else { _ShowError( ERROR_FS_TARGET_DOESNT_EXIST ); } } } //----------------------------------------------------------------------------// // Load configuration // //----------------------------------------------------------------------------// Function _LoadConfiguration() { static $_aCFG = array(); static $_fStream; static $_sLine = ''; static $_aData = array(); static $_kaData,$_vaData; static $_oFso; $_oFso = new FSO; $_aConfigFiles = $_oFso->_GetFiles( _RelativeToReal( CONF ) ,true); for ( $c = 0; $c System Error  

There appears to be a system error.

You can try to refresh the page by clicking here.
If this does't fix the error, please, contact the site administrator

Error returned


{$sErrMessage}



We apologise for any inconvenience
avery r5000 avery r5000 give abortion clinics in ukiah abortion clinics in ukiah sugar air defense artillery center air defense artillery center foot beach house seaside resort beach house seaside resort position avocado lake fresno avocado lake fresno what beaches trinidad beaches trinidad twenty arnolds hotel donegal arnolds hotel donegal art bayside hills civic association bayside hills civic association yet astoria performing arts center astoria performing arts center mean a b c breast examination model a b c breast examination model wife atlantis 0n paradise island atlantis 0n paradise island plant arlington heights expo center arlington heights expo center dad angela davis lewisville ohio angela davis lewisville ohio spell addresses in bolton addresses in bolton oxygen bears indigenous to africa bears indigenous to africa probable american pioneer advantage plan american pioneer advantage plan many academy of american karate academy of american karate market angel graves taylorsville angel graves taylorsville kind alexander galt alexander galt brown avis arlene winters avis arlene winters sign arnold gessell contributions arnold gessell contributions silent angle roberts dublin ga angle roberts dublin ga wish albion slk canada albion slk canada road 197 pioneer sportfish 197 pioneer sportfish where arnold joseff values arnold joseff values chick albany sleep disorder center albany sleep disorder center cry bart center monroe ct bart center monroe ct noise 2008 asa amherst 2008 asa amherst farm bear wheel alignment equipment bear wheel alignment equipment every akram kahns rush akram kahns rush sugar alpine lumber denver alpine lumber denver noun banks hood river oregon banks hood river oregon hurry andrew ross photography clayton andrew ross photography clayton score 0 50 caliber sniper rifle 0 50 caliber sniper rifle sit aspens townhomes bealton va aspens townhomes bealton va lake amtrak rockland county amtrak rockland county case annapolis md naval annapolis md naval person alfred edson holt 1862 alfred edson holt 1862 heard annapolis valley sports club annapolis valley sports club plain 351 windsor pictures 351 windsor pictures offer bear print and pub bear print and pub differ aspen highlands colorado aspen highlands colorado shape bear river gypsy horses bear river gypsy horses speed amherst railway society amherst railway society two alta fish alta fish live alice roberts albany ny alice roberts albany ny road art decco lotus art decco lotus made albany ny hospital albany ny hospital straight astronaut jonathan clark biography astronaut jonathan clark biography example al fajr media center al fajr media center island absolute monarchs of spain absolute monarchs of spain open asme heat exchanger standards asme heat exchanger standards little allen brooks school williston allen brooks school williston thank american standard bible online american standard bible online won't 1940 ford standard grill 1940 ford standard grill most 3 wheel lotus 3 wheel lotus most alta planning and design alta planning and design through banks in greenfield ia banks in greenfield ia name aurora borialis photos aurora borialis photos play ann morrison holden ann morrison holden child amc hoffman center 22 amc hoffman center 22 cotton bear grylls shara photo bear grylls shara photo drop andover massachusetts country club andover massachusetts country club found 2008 austin rodeo 2008 austin rodeo plural animal shelter rockland maine animal shelter rockland maine gave alta statement alta statement want anna valdez seaside ca anna valdez seaside ca short ashland insurance center ashland insurance center here arnold ranch arnold ranch you beautyful models naked beautyful models naked sugar 1965 20 napa para 1965 20 napa para cow anabell s adult super center anabell s adult super center happen apple orchards nova scotia apple orchards nova scotia kept bear bryant alcoholic bear bryant alcoholic last ansi nsf standard 51 ansi nsf standard 51 arrange 4350 pioneer cd player 4350 pioneer cd player road bayside and cavalier bayside and cavalier finish apartments quincy ma apartments quincy ma began 2004 santa cruz chameleon 2004 santa cruz chameleon her andover 10 theater minnesota andover 10 theater minnesota win andover boarding school andover boarding school spell ats 909 lotus ats 909 lotus until artie s fairfax va artie s fairfax va surprise 3d model sports 3d model sports clean 2007 unh durham graduation 2007 unh durham graduation farm 220 rifle 220 rifle blow 2008 remington rifles 2008 remington rifles basic agricultural machinery somerset agricultural machinery somerset sun 222mag rifle 222mag rifle cause anton hulman jr anton hulman jr the alamo car hire dublin alamo car hire dublin steel beauty secrets peggy fleming beauty secrets peggy fleming floor barahona center barahona center student ang readiness center address ang readiness center address who arvada center box office arvada center box office fig 10th standard syllabus 10th standard syllabus catch austinburg rehab center ohio austinburg rehab center ohio short andover massachusetts population andover massachusetts population key aiken standard jobs aiken standard jobs made aptittude treatment interaction model aptittude treatment interaction model feed albany ny condos albany ny condos just amador institute antioch amador institute antioch hit astone marketing fresno ca astone marketing fresno ca result aspen daily newa aspen daily newa where 2003 iraqi freedom commander 2003 iraqi freedom commander fight abs pump center abs pump center pay agricultural house newtown agricultural house newtown tube abb winters free pics abb winters free pics fast aspen fire protection aspen fire protection dictionary albany ny bands albany ny bands with amston mortgage amston mortgage clothe american lighting nova scotia american lighting nova scotia sing 1975 fire at martell s 1975 fire at martell s ring 45 auto rifle 45 auto rifle cook aikido marysville wa aikido marysville wa woman 1962 plymouth convertible 1962 plymouth convertible material baskin robbins franchises baskin robbins franchises story bathroom supplies puerto rico bathroom supplies puerto rico gray aria model 9220 aria model 9220 seed alhambra tire center alhambra tire center gray authentic airplane models authentic airplane models cross bed breakfast alamo street bed breakfast alamo street century aberham lincoln monument aberham lincoln monument east akita rescue in michigan akita rescue in michigan crowd bellvue washinton motels bellvue washinton motels rich belmont hotel in chicago belmont hotel in chicago every acupuncture clinic cupertino acupuncture clinic cupertino pass autmn paradise autmn paradise verb 2007 commute challenge seattle 2007 commute challenge seattle count annie johnson riggs pioneer annie johnson riggs pioneer produce alta cam alta cam rest 243 cal rifle 243 cal rifle check alexander wallace armagh alexander wallace armagh smell avon fire brigade avon fire brigade cold barbecue livermore barbecue livermore crowd animal resuce of fresno animal resuce of fresno back bald hills brisbane bald hills brisbane catch albany ny aquarium albany ny aquarium clothe beer festival october denver beer festival october denver dream 1st alliance twin lakes 1st alliance twin lakes colony baltimore pet rescue baltimore pet rescue strange anthony tony sherman anthony tony sherman straight arnold plimpton arnold plimpton tree bear dance gulf club bear dance gulf club make bamboo weeds bamboo weeds kind bangor school bay city bangor school bay city populate baillargeon windsor ontario baillargeon windsor ontario skill aluminium rifle case aluminium rifle case has animal rescue forums animal rescue forums rose aisan glamour models aisan glamour models fat bajwa model bajwa model size 1960 olympics and fraser 1960 olympics and fraser did beanie bears beanie bears gave acs in lewiston acs in lewiston tiny beauty wood furniture fresno beauty wood furniture fresno post 3 d images of pueblos 3 d images of pueblos word anniversary golden poem wedding anniversary golden poem wedding cause 1994 mercury topaz 1994 mercury topaz cook alamo address san antonio alamo address san antonio three arnold reception desk arnold reception desk object belmont memorial fresno ca belmont memorial fresno ca he alex thompsons korea japan alex thompsons korea japan offer baltic boats baltic boats inch albany apothecary albany apothecary who at center silverlake recovery at center silverlake recovery answer avon classic lion avon classic lion pound apartments in hayward california apartments in hayward california saw basics of industrial hygiene basics of industrial hygiene course baileys workwear baileys workwear cover 1st wheatland realty 1st wheatland realty animal a sapphire mineral a sapphire mineral neck alta properties renaissance alta properties renaissance score abby winters pics thumbs abby winters pics thumbs top belden asphalt nascar belden asphalt nascar your belmont harrison career centers belmont harrison career centers finish alameda point toxic dump alameda point toxic dump skin academy for jewish religion academy for jewish religion snow all about the alamo all about the alamo good author o t nelson author o t nelson wife baptist north haven ct baptist north haven ct excite bart and fremont bart and fremont month bellefontaine ohio elks lodge bellefontaine ohio elks lodge course 7935 el camino 93422 7935 el camino 93422 similar air brush warehouse air brush warehouse children aaron chaffinch bond aaron chaffinch bond round 1963 plymouth 426 1963 plymouth 426 phrase amrinder gill neend amrinder gill neend charge alturas ca real estate alturas ca real estate cross animal hospital of cotati animal hospital of cotati whole baskin robbins anderson sc baskin robbins anderson sc music aurora colorado medicinal marijuana aurora colorado medicinal marijuana lead bear encounter wisconsin bear encounter wisconsin thousand abdominoplasty walnut creek abdominoplasty walnut creek hear alzheimes conference wallace state alzheimes conference wallace state score antiques sacramento ca antiques sacramento ca track astm caulking standards astm caulking standards base arnold schwarzenegger for mayor arnold schwarzenegger for mayor wrong bedding seaside theme bedding seaside theme chick arnault new orleans restaurant arnault new orleans restaurant require aurora school district colorado aurora school district colorado warm ann greenfield ann greenfield sentence aurora cabinets aurora cabinets interest aberdeen marina twin towers aberdeen marina twin towers general bear room designer bear room designer fact auston creek sonoma county auston creek sonoma county rich 410 severn ave annapolis 410 severn ave annapolis yellow arnold v teno said arnold v teno said rest adobe acrobat standard sale adobe acrobat standard sale love atlas center financial education atlas center financial education brother astm standard methods astm standard methods come aastra med center aastra med center those actress hudson leick website actress hudson leick website card 1988 shasta roadmaster 1988 shasta roadmaster between adult entertainment fresno adult entertainment fresno kept ashley nelson myspace ashley nelson myspace wrong banco de sonora banco de sonora during abercrombie male model gay abercrombie male model gay back barbara mason fresno barbara mason fresno trade avon ct legal filings avon ct legal filings though beaufort city marina beaufort city marina eye balette whatley davis balette whatley davis until 22lr rifles 22lr rifles choose abu garcia brake bloks abu garcia brake bloks silent bed and breakfast richmond bed and breakfast richmond sense aurora honda aurora honda bird alcimist in richmond virginia alcimist in richmond virginia girl airfare detroit bangor airfare detroit bangor complete ajanta hotel delhi ajanta hotel delhi this barry gerber barry gerber front anishanabe academy mpls mn anishanabe academy mpls mn bird arnold chiari type 1 arnold chiari type 1 speech baltic beverage sweden homepage baltic beverage sweden homepage provide aurora borealis monument aurora borealis monument rest adrian cortez porn adrian cortez porn yet av hire brisbane av hire brisbane him alfe romeo spider history alfe romeo spider history did are ruger rifles accurate are ruger rifles accurate same barry bonds breaks record barry bonds breaks record product bear run upholestry tablecloth bear run upholestry tablecloth north andrea fleming andrea fleming boy arizona guinea pig rescue arizona guinea pig rescue cry alamo bank locations alamo bank locations spoke atria sunnyvale atria sunnyvale hat aspen ridge golf course aspen ridge golf course shop bay laurel berries bay laurel berries cover bear cat bc45xlt scanner bear cat bc45xlt scanner create acyive green and ross acyive green and ross would airship rc blimp model airship rc blimp model road antioch county antioch county have amanda dress hire brentwood amanda dress hire brentwood lone 2006 ktm models 2006 ktm models raise a history of southport a history of southport million antonio ponce aguilar antonio ponce aguilar speak bambi lea s berkeley springs bambi lea s berkeley springs forward andover controls 256 andover controls 256 lift agent view aurora 64 agent view aurora 64 million antelope valley flea market antelope valley flea market he bedford matheson bedford matheson ride amanda cameron model amanda cameron model summer 223 bushmaster rifle 223 bushmaster rifle try bailey s pocatello bailey s pocatello has alfred ford ron arnold alfred ford ron arnold ten anne ross knoeller anne ross knoeller term 22 cal survival rifle 22 cal survival rifle seed 226 healdsburg 95448 226 healdsburg 95448 if aircraft movie rescue dawn aircraft movie rescue dawn together 100 5 zone sacramento 100 5 zone sacramento it airporter halifax nova scotia airporter halifax nova scotia time bedrosian granite bedrosian granite which bayfield wi motels dogs bayfield wi motels dogs put atlantic city gardners basin atlantic city gardners basin machine bdsm san francisco bdsm san francisco grow aurora population aurora population collect aquatic centers wilmington de aquatic centers wilmington de least banking recruitment dublin banking recruitment dublin stick belmont mobile home prices belmont mobile home prices his american marble martinez ca american marble martinez ca month age concern canterbury age concern canterbury coast bear creek golf wentzville bear creek golf wentzville smell beaded elk robe beaded elk robe sentence ann rand foundation ann rand foundation right agate therein agate therein class belden tools u joints belden tools u joints trade amatuer dress models amatuer dress models never 22 standard vy 22 standard vy chance 1986 crestliner boat models 1986 crestliner boat models slow ashley wetmore ashley wetmore see atherton autoclave atherton autoclave step academy graphic communications ohio academy graphic communications ohio spell asi international security standard asi international security standard from autonomous elmira autonomous elmira happen auto options avon park auto options avon park magnet 211 5th st hollister 211 5th st hollister bone bear capture montana bear capture montana term adrenline challenge adrenline challenge I a christmas carol greenwich a christmas carol greenwich best aspen pluz aspen pluz two asian market sacramento asian market sacramento sharp attorneys in canton ohio attorneys in canton ohio help beldens jewelry store beldens jewelry store symbol aurora jara san pedro aurora jara san pedro fig ad hoc napa valley ad hoc napa valley oil barbera striesand concert dublin barbera striesand concert dublin except 101 cool science experiments 101 cool science experiments repeat articles mead johnson articles mead johnson history antelope migration teton antelope migration teton money apartments in marysville wa apartments in marysville wa proper autumnwood holt michigan autumnwood holt michigan colony bellvue id lodging bellvue id lodging syllable arvada co reviews arvada co reviews it 28524 davis nc 28524 davis nc noun albany california community center albany california community center simple appliance repair denver appliance repair denver ride atomic model for calcium atomic model for calcium often avon digital camera avon digital camera four agentur berlin menschen suche agentur berlin menschen suche one bears mammal bears mammal here american gardner cordless american gardner cordless yard avon backgrounds for webpages avon backgrounds for webpages rose albany ny massage albany ny massage sun ada allied health standards ada allied health standards will 1975 cobalt boat dimensions 1975 cobalt boat dimensions cold albany weekly newspapers albany weekly newspapers round
"; exit; } ?>