欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

Parse error: syntax error, unexpected $end

shiping1 的头像

用dede搭建的网站,今天改动了一下common.inc.php文件后台就进不去了

2015-02-04 11:12housejumping  分类:网站使用 | 浏览 23 次
 电脑网络
起初是网站首页跳转不过来,我就在后台操作界面中把文件管理器中/htdocs/include文件夹下面的common.inc.php文件中define('DEDEDATA', DEDEROOT.'/data')改为/../dada,然后后台就进不去了。我就从ftp上传工具中找到common.inc.php文件,把它改回原来的define('DEDEDATA', DEDEROOT.'/data'),然后再进后台,就提示出现这个:Parse error: syntax error, unexpected $end in /data/home/qxu1001850113/htdocs/include/common.inc.php on line 1
请教大神如何解决:先进入后台,然后解决网站首页跳转不成功的问题?

提问者采纳

出现这种错误,一般是用windows中的记事本打开的原因。记事本打开会给文档自动追加bom(byte-order mark),用来识别编码。可以使用notepad++ 另存为“无bom”的文件。

追问:
是只需要对这一个php文件转化成无boom的文件对吗?可是我转换后提示变成这样的了:Parse error: syntax error, unexpected $end in /data/home/qxu1001850113/htdocs/include/common.inc.php on line 4,“1”变成“4”了。
追答:
用之前的文件覆盖下。这种情况,最快的方式就是用以前的文件覆盖。
来自 http://zhidao.baidu.com/question/200284316959790725.html


PHP Parse Error: syntax error, unexpected $end 错误的解决办

2013-03-08 来源/作者:dede模板 分类:PHP教程

关键字:PHP Parse Error  

 

今天帮客户配置服务器,访问php的时候提示PHP Parse Error: syntax error, unexpected $end 错误,通过查找找到了问题,特分享下这几天写php程序,感觉很多地方不如asp,asp.Net,jsp顺手,比如session使用先得session_start();,文件跳转header用的也不方便.... 

也许是不熟悉的php的一些特性吧,不过写多了,也就慢慢适应将就了..... 

这里就整理一个代码编写调试问题,错误如下: 

Parse error: syntax error, unexpected $end in D:\xampp\htdocs\guestBook\guestBook.php on line 330 

看看程序 330行,代码最后一行,这有什么错误?google搜,找到了: 

In PHP 5, the following error may appears as an error entry in Apache error log or simply displays on PHP web page, even if calling to php scripts with php_info() works perfectly and successfully returns information on PHP configurations: 

Parse Error: syntax error, unexpected $end in ….. scripts.php on line … 

The error may caused by a missing curly bracket in PHP script coding. Beside, it may also caused by error in PHP coding in class definition, as in PHP, a class definition cannot be broke up and distributed into multiple files, or into multiple PHP blocks, unless the break is within a method declaration. 

But more commonly, the error is often caused by the use of Short Open tags in PHP, 

To use short open tags, it must be enabled in PHP.INI. Search for short_open_tag in PHP.INI, and change the value to On. The line should look line: 

short_open_tag = On 

欺我英文不好啊?看看其它几条搜索,都没说到点子上,那就看看英文了,虽不能如数翻译,大致意思是瞧明白了: 

错误发生是使用了短标签,可以在php.ini中设置short_open_tag = On 

原来Parse error 提示一般是 语法错误,使用了开放的标签,语句没有结束 也就是编程基本的一些错, 比如没注意 语句结束加 ";" 或者 if(){...} 后面忘了"}" ;<?php...?>忘了"?>"。仔细检查代码,果然是一处漏掉了"}",修改程序正常运行

来自 http://www.dedeui.com/PHP/030U54432013.html




普通分类: