程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> php代碼出現錯誤分析詳解第1/2頁

php代碼出現錯誤分析詳解第1/2頁

編輯:PHP綜合
錯誤類型:
一、未使用二進制上傳



  代碼:   
Fatal error: This encoded file is corrupted. Please refer to http://www.zend.com/support/support_faq.php?id=loader_file_corrupt for further help in 

/webhome/****.com/web/www/index.php on line 0 



二、數據表中缺少字段

  代碼:   
An error was encountered 
Boka SiteEngine
數據庫錯誤
錯誤信息1054: Unknown column 'tuijian' in 'where clause'

出現錯誤的查詢信息是
SELECT * FROM boka_product WHERE tuijian=1 AND classid IN ('1','0')ORDER BY id DESC LIMIT 4 



三、服務器限制了網站使用內存的大小為8M,現在已經超過

  代碼:   
Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 5898240 bytes) 


四、這個是模板錯誤,header.php的529行所指出的模板,該模板的79行出錯
[code]in /webhome/***.com/web/www/header.php(529) : eval()'d code on line 79 



五、數據庫表不存在

  代碼:   
An error was encountered 
Boka SiteEngine

1146: Table 'test.boka_settings' doesn't exist


SELECT value FROM boka_settings WHERE variable='defaultstyleid' 



六、 未安裝或者數據庫的用戶名密碼錯誤

  代碼:   
An error was encountered 
Boka SiteEngine

1045: Access denied for user: 'root@localhost' (Using password: YES)    



七、查詢語句有錯誤

  代碼:   
Boka SiteEngine
數據庫錯誤
錯誤信息1064: You have an error in your SQL syntax near 'ORDER BY sequence ASC,id ASC' at line 1

出現錯誤的查詢信息是
UPDATE gzhy_newsclass SET ishidden ='1' WHERE id = '38' ORDER BY sequence ASC,id ASC 



八、文件過期

  代碼:   
There is a fatal error,the file has expired 



九、數據庫出錯,需要修復數據庫或者重新啟動數據庫?

  代碼:   
An error was encountered 
Boka SiteEngine

2002: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) 



十、

  代碼:   
Warning: Unexpected character in input: '' (ASCII=4) state=1 in c:\program files\siteengine\siteenginephp\www\index.php on line 97

Warning: Unexpected character in input: '' (ASCII=5) state=1 in c:\program files\siteengine\siteenginephp\www\index.php on line 97

Parse error: parse error, unexpected T_STRING in c:\program files\siteengine\siteenginephp\www\index.php on line 97  

當前1/2頁 12下一頁閱讀全文
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved