0

ヘルプ...どこからデバッグを開始すればよいかわかりません
。すべての要件をインストールしました。今、私に与えています。
grocery crud template doesn't exist
ライブラリー/
1388行目の食料品_crud.php ...

編集

if(!file_exists($this->theme_path.$this->theme.'/views/list_template.php'))
        {
            throw new Exception('The template does not exist. Please check your files and try again.', 12);
            die();
        }

このコードと関係があります.....ダウンロードしたzipファイルでもlist_template.phpが見つかりません

4

1 に答える 1

2

dump($this->theme_path);そしてdump($this->theme);、ルートパスが問題ない場合は、これらのオブジェクトのパスを確認し、ディレクトリにこのファイルがあるかどうかを確認します

your_project_folder\assets\grocery_crud\themes\datatables\views\list_template.php
your_project_folder\assets\grocery_crud\themes\flexigrid\views\list_template.php
于 2013-04-11T13:11:13.900 に答える