• 技术文章 >后端开发 >php教程

    运行下载的网站末班报错

    2016-06-23 14:11:52原创649
    从网上下了一个网站的模板,在本机运行了下,出现这个错误:
    SCREAM: Error suppression ignored for
    ( ! ) Fatal error: Call to undefined function get_header() in C:\wamp\www\zenith\index.php on line 17
    Call Stack
    # Time Memory Function Location
    1 0.0004 386824 {main}( ) ..\index.php:0


    index。php的第17行是:
    get_header(); // Loads the header.php template. ?>

    这是为什么?


    回复讨论(解决方案)

    get_headers()

    还是报错:
    ( ! ) Parse error: syntax error, unexpected '<' in C:\wamp\www\zenith\index.php on line 17

    但是前面的代码没问题啊:
    /**
    * Index Template
    *
    * This is the default template. It is used when a more specific template can't be found to display
    * posts. It is unlikely that this template will ever be used, but there may be rare cases.
    *
    * @package Zenith
    * @subpackage Template
    * @since 0.1.0
    * @author Tung Do
    * @copyright Copyright (c) 2013, Tung Do
    * @link http://devpress.com/themes/zenith/
    * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
    */

    将17 行附件的代码贴出来

    /**
    * Index Template
    *
    * This is the default template. It is used when a more specific template can't be found to display
    * posts. It is unlikely that this template will ever be used, but there may be rare cases.
    *
    * @package Zenith
    * @subpackage Template
    * @since 0.1.0
    * @author Tung Do
    * @copyright Copyright (c) 2013, Tung Do
    * @link http://devpress.com/themes/zenith/
    * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
    */

    get_headers(); // Loads the header.php template. ?>
















    ' . __( '[entry-edit-link] [entry-published] [entry-author] [entry-comments-link]', 'zenith' ) . '
    ' ); ?>





    →', 'zenith' ) ); ?>
    '' ) ); ?>





    ' . __( '[entry-terms taxonomy="category" separator=""] [entry-terms taxonomy="post_tag" separator=""]', 'zenith' ) . '
    ' ); ?>

























    第17行是getheaders

    get_headers(); // Loads the header.php template. ?>
    这种把注释删掉,否则后面的?>的也被注释掉了,或者就把?>放在下面一行。

    知道了,网上下的模板,怎么这么多低级错误啊

    SCREAM: Error suppression ignored for
    ( ! ) Fatal error: Call to undefined function do_atomic() in C:\wamp\www\zenith\index.php on line 11
    现在还是这个报错,

    声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
    专题推荐:运行下载的网站末班报错
    上一篇:PHP可否获取客户端的MAC地址? 下一篇:自己动手写 PHP MVC 框架(40节精讲/巨细/新人进阶必看)

    相关文章推荐

    • 聊聊php百万数据怎么写入csv• 浅析PHP中的类自动加载相关文件• 系统讲解PHP缓存技术• 一文理解和实现现代PHP框架里的IOC容器• 深入了解PHP:用gdb调试源码
    1/1

    PHP中文网