hendrikhe Posted July 4, 2013 Share Posted July 4, 2013 (edited) Hello,I have a problem and basic php knownledge To make a log story short: I received a cakePHP page with a SQL database over an email. cakePHP version 1.3.13I uploaded to xampp (localhost) but of course the site didnt work. I configured the database.php with the root user and password. my index.php <?php define('APP_DIR', 'app'); define('DS', DIRECTORY_SEPARATOR); define('ROOT', dirname(__FILE__)); define('WEBROOT_DIR', 'webroot'); define('WWW_ROOT', ROOT . DS . APP_DIR . DS . WEBROOT_DIR . DS); if (!defined('CAKE_CORE_INCLUDE_PATH')) { define('CAKE_CORE_INCLUDE_PATH', ROOT); } if (function_exists('ini_set')) { ini_set('include_path', ini_get('include_path') . PATH_SEPARATOR . CAKE_CORE_INCLUDE_PATH . PATH_SEPARATOR . ROOT . DS . APP_DIR . DS ); define('APP_PATH', null); define('CORE_PATH', null); } else { define('APP_PATH', ROOT . DS . APP_DIR . DS); define('CORE_PATH', CAKE_CORE_INCLUDE_PATH . DS); } require APP_DIR . DS . WEBROOT_DIR . DS . 'index.php'; ?> error code : Warning: include(cake\bootstrap.php): failed to open stream: No such file or directory in C:\xampp\htdocs\prj_financeiro\app\webroot\index.php on line 79Warning: include(): Failed opening 'cake\bootstrap.php' for inclusion (include_path='E:\Arquivos de programas\EasyPHP5.3.0\www\cakephp\prj_financeiro;C:\xampp\htdocs\prj_financeiro\app\;.;C:\xampp\php\PEAR') in C:\xampp\htdocs\prj_financeiro\app\webroot\index.php on line 79Fatal error: CakePHP core could not be found. Check the value of CAKE_CORE_INCLUDE_PATH in APP/webroot/index.php. It should point to the directory containing your \cake core directory and your \vendors root directory. in C:\xampp\htdocs\prj_financeiro\app\webroot\index.php on line 80 Any idea how to fix it? Thanks Edited July 4, 2013 by hendrikhe Quote Link to comment https://forums.phpfreaks.com/topic/279865-cakephp-xampp/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.