opencart安裝報(bào)錯(cuò),magentossh
2022-10-13 10:05:06 - 米境通跨境電商
1.GC報(bào)錯(cuò)
錯(cuò)誤內(nèi)容
opencartSessionHandler::gc():ps_files_cleanup_dir:opendir(/var/lib/php5)failed:Permissiondenied
1
解決方法
更改php.ini中的session.save_path為webserver有權(quán)限寫的目錄,比如「/tmp」(當(dāng)然「/tmp」不是一個(gè)最好的選擇)。修改后一般要重啟webserver。
2.未設(shè)置長(zhǎng)度單位、重量單位、默認(rèn)庫(kù)存狀態(tài)等
錯(cuò)誤內(nèi)容
在admin后臺(tái)修改時(shí),提示length\_classes、weight\_classes、stock\_status等相關(guān)錯(cuò)誤。
1
解決方法
在admin后臺(tái)的system中設(shè)置length_classes、weight_classes、stock_status等相關(guān)內(nèi)容。
3.增加Nginx與PHP之間的超時(shí)時(shí)間
錯(cuò)誤內(nèi)容
Nginx錯(cuò)誤日志顯示:
489upstreamtimedout(110:Connectiontimedout)whilereadingresponseheaderfromupstream,client:xxx,server:xxx,request:"xxx",upstream:"fastcgi://unix:/var/run/php5-fpm.sock",host:"xxx",referrer:"http://xxx"
1
解決方法
修改nginx.conf:
location~.php${
...
fastcgi_read_timeout120;
...