報錯資訊解決情況彙總

2021-08-09 12:43:55 字數 896 閱讀 2309

報錯資訊:cannot read property 'mdata' of undefined

解決方法:在中加上

報錯資訊:class 'admin\controller\mysqli' not found

解決方法:

$conn = new mysqli($servername, $username, $password, $dbname);

mysqli_query($conn,'set names utf8');

if ($conn->connect_error)

改用:$conn = mysqli_init();

$conn->options(mysqli_opt_connect_timeout, 2);//設定超時時間

$conn->real_connect($servername, $username, $password, $dbname);

參考:報錯資訊:1045 access denied for user 『name』@」localhost』 (using password: yes) 

apache:

grant select,insert,update,delete,create,drop on 資料庫名.* to '使用者名稱'@'localhost' identified by '密碼';

flush privileges;//重新整理系統許可權表

nginx:

grant all privileges on *.* to '使用者名稱'@'%' identified by '密碼' with grant option

flush privileges;//重新整理系統許可權表

iptables -l -n --line-numbers

iptables -d input 9//刪3306

solr 報錯資訊解決

一 報錯 error opening new searcher.exceeded limit of maxwarmingsearchers 2 以前伺服器還執行著好好的,隨著索引的增多,伺服器經常曝出此錯誤,查了些資料,最後把solrconfig 中的2配置加大,此問題解決,檢視了各種解釋 由於該引...

專案中的報錯資訊彙總

1 org.apache.jasper.jasperexception 找不到servlet檔案,web.xml配置錯誤,有可能jstl的文件放錯位置了,要放在web inf資料夾下面 j a.sun.com jsp jstl core,少了中間的jsp 2 el表示式,一定要駝峰命名,get se...

Kylin報錯彙總

解決方法 進入tomcat檔案的的conf檔案,修改server.xml檔案,把這些注釋掉。重啟kylin,web訪問。解決方法 其實這個問題只是一些小bug問題把這個指令碼的內容改動一下就好了 etc hadoop hadoop env.sh 把下面的這一段迴圈語句給注釋掉 for f in ha...