HHVM + mediawiki 怎么配置?
环境:Debian 8 64bit,openresty(nginx加强版)1.9.7.4,HHVM 3.13.1,mediawiki 1.26.2最新版
遇到的问题:HHVM 无法解析php5,浏览器会直接下载。(比如访问wiki首页时)
相关配置:
/etc/hhvm/php.ini
<code>; php options session.save_handler = redis session.save_path = "tcp://localhost:6379" session.gc_maxlifetime = 1440 memory_limit = 256M ; hhvm specific hhvm.log.level = Warning hhvm.log.always_log_unhandled_exceptions = true hhvm.log.runtime_error_reporting_level = 8191 hhvm.mysql.typed_results = false </code>
/etc/hhvm/server.ini
<code>; php options pid = /var/run/hhvm/pid ; hhvm specific hhvm.server.port = 9000 hhvm.server.user = www hhvm.server.group = www hhvm.server.type = fastcgi hhvm.server.default_document = index.php,index.php5 hhvm.log.use_log_file = true hhvm.log.file = /var/log/hhvm/error.log hhvm.repo.central.path = /var/run/hhvm/hhvm.hhbc</code>
/etc/nginx/hhvm.conf
<code>location ~ \.(hh|php5|php)$ { fastcgi_keep_conn on; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }</code>
/etc/nginx/nginx.conf
<code>省略多余部分 include servers.conf</code>
/etc/nginx/servers.conf
<code>server { listen 80; server_name baike.mpcblab.com; root /var/www/html/baike; index index.php index.php5 index.html index.htm; set_real_ip_from 127.0.0.1; real_ip_header X-Forwarded-For; #limit_conn perip 3; #limit_conn perserver 20; #limit_rate 1024k; location / { # rewrite ^/([^?]*)(?:\?(.*))? /index.php5?title=$1&$2 last; //就是这行,注释了能访问,不注释就不会解析而是直接下载,但调用.php5文件的地方,比如“特殊页面:版本”还是会直接下载 } include hhvm.conf; }</code>
其他的Web服务都正常使用没有问题,只有mediawiki不行
回复内容:
环境:Debian 8 64bit,openresty(nginx加强版)1.9.7.4,HHVM 3.13.1,mediawiki 1.26.2最新版
遇到的问题:HHVM 无法解析php5,浏览器会直接下载。(比如访问wiki首页时)
相关配置:
/etc/hhvm/php.ini
<code>; php options session.save_handler = redis session.save_path = "tcp://localhost:6379" session.gc_maxlifetime = 1440 memory_limit = 256M ; hhvm specific hhvm.log.level = Warning hhvm.log.always_log_unhandled_exceptions = true hhvm.log.runtime_error_reporting_level = 8191 hhvm.mysql.typed_results = false </code>
/etc/hhvm/server.ini
<code>; php options pid = /var/run/hhvm/pid ; hhvm specific hhvm.server.port = 9000 hhvm.server.user = www hhvm.server.group = www hhvm.server.type = fastcgi hhvm.server.default_document = index.php,index.php5 hhvm.log.use_log_file = true hhvm.log.file = /var/log/hhvm/error.log hhvm.repo.central.path = /var/run/hhvm/hhvm.hhbc</code>
/etc/nginx/hhvm.conf
<code>location ~ \.(hh|php5|php)$ { fastcgi_keep_conn on; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }</code>
/etc/nginx/nginx.conf
<code>省略多余部分 include servers.conf</code>
/etc/nginx/servers.conf
<code>server { listen 80; server_name baike.mpcblab.com; root /var/www/html/baike; index index.php index.php5 index.html index.htm; set_real_ip_from 127.0.0.1; real_ip_header X-Forwarded-For; #limit_conn perip 3; #limit_conn perserver 20; #limit_rate 1024k; location / { # rewrite ^/([^?]*)(?:\?(.*))? /index.php5?title=$1&$2 last; //就是这行,注释了能访问,不注释就不会解析而是直接下载,但调用.php5文件的地方,比如“特殊页面:版本”还是会直接下载 } include hhvm.conf; }</code>
其他的Web服务都正常使用没有问题,只有mediawiki不行
自己解决了,参考官方文档:HHVM Doc
在server.ini加上:hhvm.php_file.extensions["php5"] = ".php5"
重启HHVM即可。
为什么不用php7呢赶紧抛弃hhvm吧。。。

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

記事本++7.3.1
好用且免費的程式碼編輯器

SublimeText3漢化版
中文版,非常好用

禪工作室 13.0.1
強大的PHP整合開發環境

Dreamweaver CS6
視覺化網頁開發工具

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

PHP用於構建動態網站,其核心功能包括:1.生成動態內容,通過與數據庫對接實時生成網頁;2.處理用戶交互和表單提交,驗證輸入並響應操作;3.管理會話和用戶認證,提供個性化體驗;4.優化性能和遵循最佳實踐,提升網站效率和安全性。

PHP主要是過程式編程,但也支持面向對象編程(OOP);Python支持多種範式,包括OOP、函數式和過程式編程。 PHP適合web開發,Python適用於多種應用,如數據分析和機器學習。

PHP和Python各有優劣,選擇取決於項目需求和個人偏好。 1.PHP適合快速開發和維護大型Web應用。 2.Python在數據科學和機器學習領域佔據主導地位。

PHP的核心優勢包括易於學習、強大的web開發支持、豐富的庫和框架、高性能和可擴展性、跨平台兼容性以及成本效益高。 1)易於學習和使用,適合初學者;2)與web服務器集成好,支持多種數據庫;3)擁有如Laravel等強大框架;4)通過優化可實現高性能;5)支持多種操作系統;6)開源,降低開發成本。

可以通過以下步驟查詢 Docker 容器名稱:列出所有容器(docker ps)。篩選容器列表(使用 grep 命令)。獲取容器名稱(位於 "NAMES" 列中)。

PHP在數據庫操作和服務器端邏輯處理中使用MySQLi和PDO擴展進行數據庫交互,並通過會話管理等功能處理服務器端邏輯。 1)使用MySQLi或PDO連接數據庫,執行SQL查詢。 2)通過會話管理等功能處理HTTP請求和用戶狀態。 3)使用事務確保數據庫操作的原子性。 4)防止SQL注入,使用異常處理和關閉連接來調試。 5)通過索引和緩存優化性能,編寫可讀性高的代碼並進行錯誤處理。

PHP適合網頁開發和快速原型開發,Python適用於數據科學和機器學習。 1.PHP用於動態網頁開發,語法簡單,適合快速開發。 2.Python語法簡潔,適用於多領域,庫生態系統強大。

如何在 Windows 中配置 Nginx?安裝 Nginx 並創建虛擬主機配置。修改主配置文件並包含虛擬主機配置。啟動或重新加載 Nginx。測試配置並查看網站。選擇性啟用 SSL 並配置 SSL 證書。選擇性設置防火牆允許 80 和 443 端口流量。
