Unauthenticated View Possible

BuffaloRandall

New member
Hello,

I am wondering if it possible to have my Dadabik application also have a unauthenticated view only mode, so users that only need to view information don't need to login?


You are using DaDaBIK version 8.1-Lerici enterprise, installed on 11-25-2017 (installation code: 131125a19965b66992), the latest version of DaDaBIK is 8.1-Lerici released on 09-05-2017

You are runnning the last release of DaDaBIK

PHP Version: 7.0.22-0ubuntu0.16.04.1

mysql version: 5.7.20-0ubuntu0.16.04.1

Web server: Apache/2.4.18 (Ubuntu)

Client: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36
 

eugenio

Administrator
Staff member
If you want to disable authentication, in config.php

$enable_authentication = 0;

In that way, however, authentication will be disabled for the whole application. If you want to do it just for a few tables, the best way is by creating two different dadabik applications that work on a different set of tables.

Best,
 

BuffaloRandall

New member
Thanks,

Can I create a separate application on the same database and set of tables in this fashion to have an unauthenticated view only version?
 

eugenio

Administrator
Staff member
Yes, sure, you can.
See "How to share the same database between two or more DaDaBIK applications" in the documentation.

Best,
 
Top