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吧。。。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

Wordpress site file access is restricted: troubleshooting the reason why .txt file cannot be accessed recently. Some users encountered a problem when configuring the mini program business domain name: �...

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

CMS stands for Content Management System. It is a software application or platform that enables users to create, manage, and modify digital content without requiring advanced technical knowledge. CMS allows users to easily create and organize content
