我一直在尝试在 HHVM 上运行 phpmyadmin。通常的 php 文件运行正常,但每当我尝试访问 localhost:8080/phpmyadmin 时,它都会给我一个空白页面,没有错误消息。我假设它必须处理mysql。PS:我的系统上已经安装了mysql。
这是 server.hdf
PidFile = /var/run/hhvm/pid
Server {
SourceRoot = /var/www/
DefaultDocument = index.php
}
Log {
Level = Warning
AlwaysLogUnhandledExceptions = true
RuntimeErrorReportingLevel = 8191
UseLogFile = true
UseSyslog = false
File = /var/log/hhvm/error.log
Access {
* {
File = /var/log/hhvm/access.log
Format = %h %l %u % t \"%r\" %>s %b
}
}
}
Repo {
Central {
Path = /var/log/hhvm/.hhvm.hhbc
}
}
#include "/usr/share/hhvm/hdf/static.mime-types.hdf"
StaticFile {
FilesMatch {
* {
pattern = .*\.(dll|exe)
headers {
* = Content-Disposition: attachment
}
}
}
Extensions : StaticMimeTypes
}
MySQL {
TypedResults = false
}