1

我创建了一个新的 RainTPL 项目。当我转到我的文件 Index.html 以查看结果显示以下错误时。

致命错误:Uncaught Rain\Tpl\Exception:缓存目录缓存/没有写权限。设置写入权限或将 RAINTPL_CHECK_TEMPLATE_UPDATE 设置为 FALSE。更多详情请 访问 http://www.raintpl.com/Documentation/Documentation-for-PHP-developers/Configuration/ 在 /Applications/XAMPP/xamppfiles/htdocs/aLittleBitOfPhp/tpl/vendor/rain/raintpl/library/Rain/Tpl/Parser.php:223 堆栈跟踪:#0 /Applications/XAMPP/xamppfiles/htdocs/aLittleBitOfPhp/tpl/vendor /rain/raintpl/library/Rain/Tpl.php(262): Rain\Tpl\Parser->compileFile('index', NULL, 'tpl/', 'tpl/index.html', 'cache/index.6f6 ...') #1 /Applications/XAMPP/xamppfiles/htdocs/aLittleBitOfPhp/tpl/vendor/rain/raintpl/library/Rain/Tpl.php(63): Rain\Tpl->checkTemplate('index') #2 /Applications/XAMPP/xamppfiles/htdocs/aLittleBitOfPhp/tpl/index.php(20): Rain\Tpl->draw('index') #3 {main} 抛出 /Applications/XAMPP/xamppfiles/htdocs/aLittleBitOfPhp/tpl /vendor/rain/raintpl/library/Rain/Tpl/Parser.php 在第 223 行

然后当我去终端安装使用:

chmod 777 ./cache
chmod 755 ./cache
chown -R admin  ./cache

显示跟随错误。

chmod: ./cache: No such file or directory

chown: ./cache: No such file or directory

我正在使用 macOS Sierra

4

1 回答 1

0

那么正确的做法就是不做./

您必须进入项目目录并在终端上使用它。

chmod 777 cache

谢谢你的帮助

于 2018-05-01T09:46:25.133 回答