Configuration

Make your DbFacePHP works as your style

Access Security

In most cases, you just want to allow accessing the item at some ips(at home or at work), in this case, please configure the whitelist. All ip addresses not in the whitelist will be denied to access the service. Please go to the installation directory, and open the application/config/config.php file, and find the following line:

$config['white_list']=; i.e. Edit it to $config['white_list']=’192.168.0.1-192.168.0.24;211.157.2.99′;”

you may have known, only 192.168.0.1 ~ 192.168.0.24 and 211.157.2.99 allowed to access the service.

Show/Hide Row count of tables

As default, the row count of tables shown at the menuitems. You can set

1
$config['showRowCountAtMenu'] = TRUE;

to

1
$config['showRowCountAtMenu'] = FALSE;

for performance reason.