• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

xampp localhost error

Newbie Spellweaver
Joined
Mar 11, 2012
Messages
34
Reaction score
0
hey i have that error , I install the ioncube_loader_win_5.5.dll for and use files dboor.

Code:
Warning: require(C:\xampp\htdocs\app\config.php): failed to open stream: No such file or directory in C:\xampp\htdocs\app\boot.php on line 22

Warning: require(C:\xampp\htdocs\app\config.php): failed to open stream: No such file or directory in C:\xampp\htdocs\app\boot.php on line 22

Fatal error: require(): Failed opening required 'C:\xampp\htdocs\app\config.php' (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\app\boot.php on line 22

boot.php
Code:
<?php

define( "ROOT_PATH", realpath( dirname( dirname( __FILE__ ) ) ).DIRECTORY_SEPARATOR ); 
define( "APP_PATH", ROOT_PATH."app".DIRECTORY_SEPARATOR ); 
define( "LIB_PATH", ROOT_PATH."lib".DIRECTORY_SEPARATOR ); 
define( "MODEL_PATH", APP_PATH."model".DIRECTORY_SEPARATOR ); 
define( "VIEW_PATH", APP_PATH."view".DIRECTORY_SEPARATOR );   [USER=1333350597]Set[/USER]_magic_quotes_runtime( FALSE ); 
if ( isset( $_SERVER['HTTP_ACCEPT_ENCODING'] ) && substr_count( $_SERVER['HTTP_ACCEPT_ENCODING'], "gzip" ) ) 
{ 
    ob_implicit_flush( 0 ); 
    if ( @ob_start( array( "ob_gzhandler", 9 ) ) ) 
    { 
        header( "Content-Encoding: gzip" ); 
    } 
} 
header( "Date: ".gmdate( "D, d M Y H:i:s" )." GMT" ); 
header( "Last-Modified: ".gmdate( "D, d M Y H:i:s" )." GMT" ); 
if (isset($_GET["showerr"]))
	error_reporting (E_ALL);
require LIB_PATH.'incube.php';
require( APP_PATH."config.php" ); 
require( LIB_PATH."webservice.php" ); 
require( LIB_PATH."widget.php" ); 
require( LIB_PATH."webhelper.php" ); 
require( APP_PATH."metadata.php" ); 
require( MODEL_PATH."base.php" ); 
require( APP_PATH."components.php" ); 
require( APP_PATH."mywidgets.php" ); 
$cookie = ClientData::getinstance( ); 
$AppConfig["system"]["lang"] = "en";//$cookie->uiLang; 
define( "LANG_PATH", APP_PATH."lang".DIRECTORY_SEPARATOR.$AppConfig["system"]["lang"].DIRECTORY_SEPARATOR ); 
define( "LANG_UI_PATH", LANG_PATH."ui".DIRECTORY_SEPARATOR ); 
require( LANG_PATH."lang.php" ); 
$tempdata = explode( " ", microtime( ) ); 
$data1 = $tempdata[0]; 
$data2 = $tempdata[1]; 
$__scriptStart = ( double )$data1 + ( double )$data2;
?>

Print error
http://prntscr.com/6ul3vs
oCheirinhas - xampp localhost error - RaGEZONE Forums
 
Last edited:
Newbie Spellweaver
Joined
Mar 24, 2012
Messages
18
Reaction score
1
check if the fiel webservice.php exist when it exist add me on skype i can help u : philippmayr1
 
Upvote 0
Back
Top