1. 程式人生 > >weiPhp4.0安裝使用經驗總結

weiPhp4.0安裝使用經驗總結

環境要求:

1.

            系統: Linux CentOS 6.5或其他皆可            資料庫:MySQL 5.4以上            PHP環境:版本5.5以上            埠:apache或nginx外網80埠          注:1. php環境需要支援安裝dom元件   2.請提供配置伺服器出口ip地址(配置白名單,實際應用中遇到過訪問的ip和伺服器出去的ip不一致)。       MySQL需要支援group by問題1 如下 環境mysql,group by報ERROR 1055(42000)錯誤!解決:

環境:

mysql版本5.7.18-log

查詢:

group by

報錯資訊:

ERROR 1055 (42000): Expression #3 of SELECT list is not in GROUP BY clause and contains nonaggregated column ‘s.type_name’ which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by

解決方案:

開啟/etc/my.cnf配置檔案

[mysqld]下面加上

sql_mode 

=’STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION’;

重啟mysql服務,再次執行sql語句,完美解決了!

問題2:

phpCaltundefinefunctiodom_import_simplexml()

答:配置環境的時候未安裝上php的dom擴充套件