开源实例之PMWH
前言
PMWH (PHPMyWebHosting) is based on normal PHP and HTML Code. Some menus inside are using PHPLayersmenu. In the back works a MySQL database which holds all information. Also a bit of Javascript is used but it is not a must to have Javascript enabled.
顾名思义,PMWH(PHPMyWebHosting)是 PHP 语言开发的 WEB 面板,从界面可以看出年代感。
实例地址
实例配置
配置 | 描述 |
---|---|
系统 | Debian |
服务端 | PHP 5.6 |
数据库 | MariaDB 10.5 |
服务器 | Nginx |
程序 | PMWH 0.5.0 |
实例部署
权限要求
- 具有系统读写权限
- 已安装 PHP(建议 PHP5,高版本存在不兼容)
- 已安装数据库,如 MySQL
- 已安装 Nginx
域名解析
以 Nginx 为例,配置 url 重写:
if (!-e $request_filename) {
rewrite ^/(.*) /index.php/$1 last;
}
建数据库
创建一个数据库,用于在后面安装程序中使用。
安装程序
从仓库下载压缩包,解压到服务器域名解析的目录,然后访问网站,跟随安装程序引导填写即可。详见官网http://pmwh.ckvsoft.at。
实例体验
后记
本实例仅供参考,不定期重置数据。