I wanted to display data frontend pages

miktham

New member
Hi All,

I wonder is it possible to display my datas public front page view?

How it be done?
 

Martin68

Well-known member
Could you please explain what exactly you want to do ? I don't know what you mean with a "public page view"..... a page which can be seen without logging into DaDaBIK could be generated with php.....
 

deep64blue

DaDaBIK Guru
I wonder is it possible to display my datas public front page view?
Yes you can have a public front page e.g. https://gameplan.org.uk/index.php

Section 8.1 of the documentation explains it:-

If you want make part of your DaDaBIK application public and part private, for example you want to allow unathenticated users to read a public dataset or you want to open to the public a registration form or a contact form, you can still set $enable_authentication = 1 and then define who is the "public" user in config.php (parameter $username_public_user): unathenticated users will be granted with the permissions you assign to the group the public user belongs to.

So you define your public users e.g. "demo" and add them to a group "demo" then give read only access to the demo group to the pages you want to allow them to see.
 
Top