“在......中没有该文件或目录..”

时间:2016-11-13 09:48:43

标签: php include-path

我在htdocs中有一个名为includes的文件夹,例如header.php。然后我在文件夹namned index.php之外有一个文件。我使用include(" includes / header.php");在index.php文件中包含标题,但我得到" include(includes / header.php):无法打开流:/home/lih/public_html/index.php"中没有这样的文件或目录;。我做错了什么?

添加可能很重要,这可以在我的计算机上运行,​​但不能在服务器上运行。



<!DOCTYPE html>
<html lang="sv">
<head>
    <title><?= $site_title . $divider . $page_title; ?></title>
    <meta charset="utf-8">
    <link rel="stylesheet" href="css/mainmenu.css" type="text/css">
</head>
<body>
    <div id="container">
        <header id="mainheader">
            <h1>Välkommen</h1>
			<!--inkluderar mainmenu-->
            <?php include("includes/mainmenu.php"); ?>
        </header>

        <section id="leftcontent">
&#13;
&#13;
&#13;

&#13;
&#13;
<?php
$page_title = "Startsida";
include("includes/header.php");
?>
<link rel='stylesheet' type='text/css' href='css/index.css' /> 
<h2>Startsidan</h2>

        <section id="leftcontent">
            <h2>svar</h2>
            <p>text </p>
        </section>

<?php
include("includes/checklog.php");
&#13;
&#13;
&#13;

0 个答案:

没有答案