Note that there are some explanatory texts on larger screens.

plurals
  1. POCakephp error messages might be my .htaccess file
    text
    copied!<p>I am trying to get this cakephp project running on my localhost, but always receiving a couple of error messages</p> <p><em><strong>I receive this error message:</em></strong></p> <p>Warning: include(Cake\bootstrap.php) [function.include]: failed to open stream: No such file or directory in C:\wamp\www\cts\app\webroot\index.php on line 77</p> <p>Warning: include() [function.include]: Failed opening 'Cake\bootstrap.php' for inclusion (include_path='C:\wamp\www\cts\lib;.;C:\php\pear') in C:\wamp\www\cts\app\webroot\index.php on line 77</p> <p>Fatal 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:\wamp\www\cts\app\webroot\index.php on line 86</p> <p><em><strong>end</em></strong></p> <p><em><strong>code</em>*</strong> Index.php file:</p> <pre><code>if (!defined('CAKE_CORE_INCLUDE_PATH')) { if (function_exists('ini_set')) { ini_set('include_path', ROOT . DS . 'lib' . PATH_SEPARATOR . ini_get('include_path')); } /**line 77**/ if (!include('Cake' . DS . 'bootstrap.php')) { $failed = true; } } else { if (!include(CAKE_CORE_INCLUDE_PATH . DS . 'Cake' . DS . 'bootstrap.php')) { $failed = true; } } if (!empty($failed)) { /**line 86**/ trigger_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 " . DS . "cake core directory and your " . DS . "vendors root directory.", E_USER_ERROR); } </code></pre> <p><em><strong>end of file</em></strong></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload