Skip to content

ssdb/phpssdbadmin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
ideawu
Nov 22, 2018
773149d · Nov 22, 2018

History

88 Commits
Nov 22, 2018
Jul 30, 2014
Jul 22, 2014
Jul 23, 2014
Mar 28, 2016
Aug 18, 2015
Jul 22, 2014
Jul 22, 2014
Jul 22, 2014
Oct 31, 2018
Jul 22, 2014
Jul 29, 2014
Jul 22, 2014
Aug 6, 2015

Repository files navigation

phpssdbadmin

PHP 模块依赖

  • php-gd
  • php-mcrypt
  • php-openssl

安装

编辑 app/config/config.php:

'servers' => array(
	array(
		'host' => '127.0.0.1',
		'port' => '8888',
	),
),

hostport 修改成正确的值.

然后编辑你的 Nginx 配置文件, 加入一条 URL 重写规则:

location /phpssdbadmin {
	try_files $uri $uri/ /phpssdbadmin/index.php?$args;
}

注意: 如果你还没有配置好 php, 请先配置好 php! 下面是一个示例, 但不保证你能完全理解. 如果你无法理解, 请在搜索引擎上学习如何配置 nginx+php, 谢谢!

index index.php;
root /somewhere/htdocs
location ~ \.php$ {
	include        fastcgi_params;
	fastcgi_pass   127.0.0.1:9000;
	fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
}

如果你使用的是 Apache 的话, 你可以试试这条 URL 重写规则.

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /phpssdbadmin/
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule . /phpssdbadmin/index.php [L] 
</IfModule>

phpssdbadmin

SSDB Admin Tool Built with PHP.

PHP module dependency

  • php-gd
  • php-mcrypt
  • php-openssl

Install

Edit app/config/config.conf:

'servers' => array(
	array(
		'host' => '127.0.0.1',
		'port' => '8888',
	),
),

Change host and port to the right values.

Then edit your Nginx configuration, add one URL rewrite rule as:

location /phpssdbadmin {
	try_files $uri $uri/ /phpssdbadmin/index.php?$args;
}

Your have to set up nginx+php first!

index index.php;
root /somewhere/htdocs
location ~ \.php$ {
	include        fastcgi_params;
	fastcgi_pass   127.0.0.1:9000;
	fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
}

If you are using Apache, try this URL rewrite rule:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /phpssdbadmin/
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule . /phpssdbadmin/index.php [L] 
</IfModule>

Screenshots