简体   繁体   English

克隆项目时缺少cake / basics.php

[英]cake/basics.php missing when cloning a project

I tried to clone beta.neighborrow.com - I copied the directory file for file but I'm getting this error on the new URL instillbliss.neighborrow.com : 我尝试克隆beta.neighborrow.com我复制了文件的目录文件,但是在新的URL instillbliss.neighborrow.com上收到此错误:

Warning: require(cake/basics.php) [function.require]: failed to open stream: No such file or directory in /home/neighborrow/instillbliss.neighborrow.com/index.php on line 53 警告:require(cake / basics.php)[function.require]:无法打开流:第53行的/home/neighborrow/instillbliss.neighborrow.com/index.php中没有此类文件或目录

Fatal error: require() [function.require]: Failed opening required 'cake/basics.php' (include_path='.:/usr/local/lib/php:/usr/local/php5/lib/pear:/home/neighborrow/instillbliss.neighborrow.com:/home/neighborrow/instillbliss.neighborrow.com/app/') in /home/neighborrow/instillbliss.neighborrow.com/index.php on line 53 致命错误:require()[function.require]:无法打开所需的“ cake / basics.php”(include_path =“。:/ usr / local / lib / php:/ usr / local / php5 / lib / pear:/ home第53行的/home/neighborrow/instillbliss.neighborrow.com/index.php中的/neighborrow/instillbliss.neighborrow.com:/home/neighborrow/instillbliss.neighborrow.com/app/')

I found the right file thanks to Ahmed... 感谢艾哈迈德,我找到了正确的文件...

*/
if (!defined('APP_DIR')) {
    define('APP_DIR', basename(dirname(dirname(__FILE__))));
}

/**
 * The absolute path to the "cake" directory, WITHOUT a trailing DS.
 *
 */
if (!defined('CAKE_CORE_INCLUDE_PATH')) {
    define('CAKE_CORE_INCLUDE_PATH', '/home/neighborrow');
}

/**
 * Editing below this line should NOT be necessary.
 * Change at your own risk.
 *
 */
if (!defined('WEBROOT_DIR')) {
    define('WEBROOT_DIR', basename(dirname(__FILE__)));

I am assuming that I have to change /home/neighborrow , but what should I change it to? 我假设我必须更改/home/neighborrow ,但是应该将其更改为什么? Is that the database? 那是数据库吗?

您需要重新配置webroot / index.php文件中的路径,并确保您对cake文件夹设置了正确的权限

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM