我試圖安裝工藝CMS和我收到以下錯誤PHP文件無法找到
Could not find your craft/ folder. Please ensure that $craftPath is set correctly in /var/www/index.php
這是我的index.php文件夾看起來像
必要的文件夾<?php
// Path to your craft/ folder
$craftPath = '../craft';
// Do not edit below this line
$path = rtrim($craftPath, '/').'/app/index.php';
if (!is_file($path))
{
exit('Could not find your craft/ folder. Please ensure that <strong><code>$craftPath</code></strong> is set correctly in '.__FILE__);
}
require_once $path;
工藝文件夾只是www上面的一個目錄,不明白爲什麼找不到它。
這裏是我的apache2.conf文件,我想有所作爲的部分,該文件是大,我無法弄清楚如何複製納米
Include /etc/phpmyadmin/apache.conf
DocumentRoot /var/www
ServerRoot "/etc/apache2"
整件事
Im和使用有預置的燈安裝。 –