'; // print "

Upgrade Beta 1 to Beta 2

If you are getting this error because you just upgraded your bitweaver from Beta 1 to Beta 2, please follow this link to the installer, which will guide you through the upgrade process: Upgrade Beta 1 to Beta 2"; print "

You are running bitweaver in TEST mode

\n"; print "
"; print "
".$pLogMessage."
"; print "
"; print ""; } elseif( $errorEmail ) { mail( $errorEmail, "$pSubject", $pLogMessage ); if( defined( 'AUTO_BUG_SUBMIT' ) && AUTO_BUG_SUBMIT && !empty( $gBitSystem ) && $gBitSystem->isDatabaseValid() ) { mail( 'bugs@bitweaver.org',"$subject $pSubject",$pLogMessage ); } } if( $pFatal ) { die(); } } function bit_error_string( $iDBParms ) { global $gBitDb; global $gBitUser; global $_SERVER; $separator = "\n"; $indent = " "; $date = date("D M d H:i:s Y"); // [Tue Sep 24 12:19:20 2002] [error] if( isset( $gBitUser->mInfo ) ) { $acctStr = "ID: ".$gBitUser->mInfo['user_id']." - Login: ".$gBitUser->mInfo['login']." - e-mail: ".$gBitUser->mInfo['email']; } else { $acctStr = "User unknown"; } $info = $indent."[ - ".BIT_MAJOR_VERSION.".".BIT_MINOR_VERSION.".".BIT_SUB_VERSION." ".BIT_LEVEL." - ] [ $date ]".$separator; $info .= $indent."-----------------------------------------------------------------------------------------------".$separator; $info .= $indent."#### USER AGENT: ".$_SERVER['HTTP_USER_AGENT'].$separator; $info .= $indent."#### ACCT: ".$acctStr.$separator; $info .= $indent."#### URL: http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'].$separator; if( isset($_SERVER['HTTP_REFERER'] ) ) { $info .= $indent."#### REFERRER: $_SERVER[HTTP_REFERER]".$separator; } $info .= $indent."#### HOST: $_SERVER[HTTP_HOST]".$separator; $info .= $indent."#### IP: $_SERVER[REMOTE_ADDR]".$separator; if( $gBitDb && isset( $php_errormsg ) ) { $info .= $indent."#### PHP: ".$php_errormsg.$separator; } if ( $iDBParms['sql'] ) { $badSpace = array("\n", "\t"); $info .= $indent."#### SQL: ".str_replace($badSpace, ' ', $iDBParms['sql']).$separator; if( is_array( $iDBParms['p2'] ) ) { $info .= $indent.'['.implode( ', ', $iDBParms['p2'] ).']'.$separator; } } $errno = ((int)$iDBParms['errno'] ? 'Errno: '.$iDBParms['errno'] : ''); $info .= $indent."#### ERROR CODE: ".$errno." Message: ".$iDBParms['db_msg']; $stackTrace = bt( 9999, FALSE ); //multiline expressions matched if( preg_match_all( "/.*adodb_error_handler\([^\}]*\)(.+\}.+)/ms", $stackTrace, $match )) { $stackTrace = $match[1][0]; } $globals = array( '$_POST' => $_POST, '$_GET' => $_GET, '$_COOKIE' => $_COOKIE, '$_FILES' => $_FILES, ); $parameters = ''; foreach( $globals as $global => $hash ) { if( !empty( $hash )) { $parameters .= $separator.$separator.$global.': '.$separator.var_export( $hash, TRUE ); } } $parameters = preg_replace( "/\n/", $separator.$indent, $parameters ); $ret = $info.$separator.$separator.$stackTrace.$parameters; return $ret; } if (!function_exists('bt')) { // Make sure another backtrace function does not exist function bt( $levels=9999, $iPrint=TRUE ) { $s = ''; if (PHPVERSION() >= 4.3) { $MAXSTRLEN = 64; $traceArr = debug_backtrace(); array_shift($traceArr); $tabs = sizeof($traceArr)-1; $indent = ''; $sClass = ''; foreach ($traceArr as $arr) { $levels -= 1; if ($levels < 0) break; $args = array(); for ($i=0; $i <= $tabs; $i++) { $indent .= '}'; } $tabs -= 1; if ( isset($arr['class']) ) { $sClass .= $arr['class'].'::'; } if ( isset($arr['args']) ) { foreach( $arr['args'] as $v ) { if (is_null($v) ) { $args[] = 'null'; } elseif (is_array($v)) { $args[] = 'Array['.sizeof($v).']'; } elseif (is_object($v)) { $args[] = 'Object:'.get_class($v); } elseif (is_bool($v)) { $args[] = $v ? 'true' : 'false'; } else { $v = (string) @$v; $str = htmlspecialchars(substr($v,0,$MAXSTRLEN)); if (strlen($v) > $MAXSTRLEN) $str .= '...'; $args[] = $str; } } } if( !preg_match( "*include*", $arr['function'] ) && !preg_match( "*silentlog*", strtolower( $arr['function'] ) ) ) { $s .= "\n ".$indent.' -> '; $s .= $sClass.$arr['function'].'('.implode(', ',$args).')'; } $s .= "\n ".$indent; $s .= @sprintf(" LINE: %4d, %s", $arr['line'],$arr['file']); $indent = ''; } $s .= "\n"; if( $iPrint ) { print '
'.$s."
\n"; } } return $s; } } // End if function_exists('bt') // var dump variable in something nicely readable in web browser function vd( $pVar, $pGlobals=FALSE ) { if( $pGlobals ) { print '

$pVar

'; } print vc( $pVar ); if( $pGlobals ) { if( !empty( $_GET )) { print '

$_GET

'; print vc( $_GET ); } if( !empty( $_POST )) { print '

$_POST

'; print vc( $_POST ); } if( !empty( $_FILES )) { print '

$_FILES

'; print vc( $_FILES ); } if( !empty( $_COOKIE )) { print '

$_COOKIE

'; print vc( $_COOKIE ); } } } // var capture variable in something nicely readable in web browser function vc( $iVar, $pHtml=TRUE ) { ob_start(); if( is_object( $iVar ) ) { if( isset( $iVar->mDb ) ) { unset( $iVar->mDb ); } } // xdebug rocks! if( extension_loaded( 'xdebug' ) ) { var_dump( $iVar ); } elseif( $pHtml && !empty( $_SERVER['HTTP_USER_AGENT'] ) && $_SERVER['HTTP_USER_AGENT'] != 'cron' && ((is_object( $iVar ) && !empty( $iVar )) || is_array( $iVar )) ) { include_once( UTIL_PKG_PATH.'dBug/dBug.php' ); new dBug( $iVar ); } else { print '
';
		if( is_object( $iVar ) ) {
			var_dump( $iVar );
		} elseif( is_string( $iVar ) && !empty( $_SERVER['HTTP_USER_AGENT'] ) && $_SERVER['HTTP_USER_AGENT'] != 'cron' ) {
			var_dump( htmlentities( $iVar ) );
		} else {
			var_dump( $iVar );
		}
		print "
\n"; } $ret = ob_get_contents(); ob_end_clean(); return $ret; } function va( $iVar ) { $dbg = var_export($iVar, 1); $dbg = highlight_string("", 1); echo "
Var Anatomy
"; echo "
$dbg
"; } ?>