如果我用浏览器打开这个文件(下面的代码)(通过localhost/file.php
),一切都按预期工作。但是当使用Coda预览功能时,它会显示每个包含的错误:
Warning: include(./sections/title.php): failed to open stream: No such file or directory in - on line 4 Warning: include(): Failed opening './sections/title.php' for inclusion (include_path='.:') in - on line 4
Warning: include(./sections/form.php): failed to open stream: No such file or directory in - on line 10 Warning: include(): Failed opening './sections/form.php' for inclusion (include_path='.:') in - on line 10
如何使用Coda预览解决此问题?
<html>
<head>
<?php
include("./sections/title.php");
?>
</head>
<body>
<p>Form 1</p>
<?php
include("./sections/form.php");
?>
</body>
</html>
答案 0 :(得分:-1)
Coda需要一些配置,说明:
- 首先通过单击“设置”按钮设置本地根,然后导航到MAMP在安装时应创建的“htdocs”文件夹。路径应该是Applications / MAMP / htdocs。在htdocs文件夹中创建一个新文件夹,并将其选为Local Root。
- 现在将本地网址设为http://localhost/the_name_of_the_folder。
- 您可以填写其他两个字段,根URL(用于为您的网站制作图标的URL)和远程Root(用于在您准备上线时上传到远程服务器),如果您需要但是你可以将它们留空以供本地开发。
- 现在保存网站,你应该好好去。如果包含仍然不起作用,请尝试重新启动Coda 2和MAMP。