我在找到我的/ mysite /文件夹时遇到了一些麻烦 - 我正在尝试编辑我的_config.php文件,所以我可以在网站上添加一些架构,但是没有/ mysite /文件夹。是否可能将其重命名为其他内容,或者根本不存在?有没有办法找出哪个文件夹是“/ mysite /”文件夹?
答案 0 :(得分:3)
The global variable $project
is defined with the name of the "mysite" folder (it's basically the project folder).
So echoing that out from ContentController::init()
would be a good way to determine it. Otherwise, just search the folders for "Page_Controller" and you should find the page class and where all the other work is stored.
global $project;
var_dump($project);
die;
答案 1 :(得分:0)
它应该在您的webroot中,还应该是 / framework / 和 / cms / 文件夹。查看网络服务器配置,找出网站根目录的位置。
你是如何安装silverstripe的?你用过作曲家吗?你下载了一个随时可用的拉链吗?如果是,哪一个?