Defaut view after login

JtheBAB

New member
---------------------
DaDaBIK version 11.5-Elba platinum

PHP Version: 7.4.28

mysql version: 5.7.38

Web server: Apache

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

How can i change which page is loaded when i login to the app? I always get to "Comments" but i want to have "Device" showed when i login.

Thanks
 

Attachments

  • Untitled.png
    Untitled.png
    4.4 KB · Views: 1

eugenio

Administrator
Staff member
At the moment you can't set a specific table/view based page, but you can have an homepage (custom html or php page).

In the homepage, you could do a redirect (in php) to the page you prefer.

Best,
 

JtheBAB

New member
Ok thanks. I could fix it with this:


PHP:
<?php
header("Location: url", TRUE, 301);
exit();
?>

Then in dadabik i set the permission to "Yes, but not visible in the menu". Now when you login you get automatically redirected to the page. Great.
 
Top