oli
Joined: 15 Jun 2007
Posted:15 Jun 2007 (04:49 UTC)
Hello

after the installation, the install.inc.php i renamed, i become this error:

<?php
/**
  • $Header: /cvsroot/bitweaver/_bit_wiki/index.php,v 1.1.1.1.2.2 2006/01/28 09:19:48 squareing Exp $
  • Copyright (c) 2004 bitweaver.org
  • Copyright (c) 2003 tikwiki.org
  • Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
  • All Rights Reserved. See copyright.txt for details and a complete list of authors.
  • Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details
  • $Id: index.php,v 1.1.1.1.2.2 2006/01/28 09:19:48 squareing Exp $
  • @package wiki
  • @subpackage functions
  • /

/**
  • required setup
  • /
require_once( '../bit_setup_inc.php' );
require_once( WIKI_PKG_PATH.'BitPage.php' );

if( !empty( $_REQUESTstructure_id>'structure_id' ) ) {
include( LIBERTY_PKG_PATH.'display_structure_inc.php' );
} else {
global $siteTitle;
if ( !isset( $_REQUESTpage>'page' ) and !isset( $_REQUESTpage_id>'page_id' ) ) {
$_REQUESTpage>'page' = $gBitSystem->getPreference( 'wikiHomePage' );
}
$gHome = new BitPage();
$wikiHome = $gBitSystem->getPreference("wikiHomePage", 'HomePage');
if( !($gHome->pageExists( $wikiHome )) ) {
$homeHash = array( 'title' => (isset( $wikiHome ) ? $wikiHome : 'HomePage'),
'creator_user_id' => ROOT_USER_ID,
'modifier_user_id' => ROOT_USER_ID,
'edit' => 'Welcome to '.( $gBitSystem->getPreference( 'siteTitle', 'our site' ) ) );
$gHome->store( $homeHash );
}

include( WIKI_PKG_PATH.'lookup_page_inc.php' );
include( WIKI_PKG_PATH.'display_bitpage_inc.php' );
}

?>

thanks for help
dspt
Joined: 10 Jan 2006

Re:

Posted:15 Jun 2007 (15:21 UTC)
the code shown is just the inner code of the index.php page, not an error notice.
for some reason the php is not interpreted by the server engine
  Page 1 of 1  1