Recent content by juergen_mueller

  1. juergen_mueller

    Removing the $enable_authentication config parameter

    I'm not quite sure. As soon as I disable $enable_authentication (set to 0), the site is publicly available without having provided a public user. so, for me it's still seems to be useful
  2. juergen_mueller

    In Progress Bar Code / QR Code content type

    Hello Eugenio QR code generation would also be a useful option. Best, Juergen
  3. juergen_mueller

    Implemented Formula Fields

    Hi Eugenio That's exactly what I missed for one of my projects. Looking forward to using it soon ;-)
  4. juergen_mueller

    Step 2/4 not working on upgrade from 11.12 to 12.0

    Actually, I used the "old" upgrade option which went fine without error messages, and the application works as expected.
  5. juergen_mueller

    Multilingual menu items

    Maybe it's possible to implement a multilingual menu option as for labels - if it does not exist already ;-) ? Would be great.
  6. juergen_mueller

    ssh tunnel to database

    Hi I would like (because I would need it for a specific reason) to establish a database connection via a SSH tunnel. Is this possible with DaDaBik, generally speaking? I have this code generated by ChatGPT. Will this work ? <?php // SSH server credentials $ssh_host = 'your_ssh_host'; // SSH...
  7. juergen_mueller

    Implemented Hide page from menu

    That's exactly the case I'm looking for
  8. juergen_mueller

    Enhance (bar)chart option

    In some cases I would like to create a custom barchart with more than one value, e.g. Select label AS Label, sum(value) AS Value1, sum(value2) AS Value2 from chart01 GROUP BY label This is, however, not possible yet. Would be a great extra feature ;-)
  9. juergen_mueller

    Cannot upload larger file sizes, despite being under $max_upload_file_size

    Maybe you could check whether your php.ini allows larger uploads : upload_max_filesize.
  10. juergen_mueller

    Reorder fields in a table

    Ok, understood. Actually, I don't use DaDaBik to create tables, only views sometimes. So, I'm not sure whether and how you can change the field order in DaDaBik. I use Navicat and/or Workbench, sometimes phpMyAdmin to manipulate my database tables. There, you can change the order in every way...
  11. juergen_mueller

    Reorder fields in a table

    I'm not quite sure whether I understood your request correctly. You can reorder the fields in the forms configurator. have a look at the Basic General Settings point 3, Position order
  12. juergen_mueller

    Delete uploaded files with no references

    There's a setting in the config file which should do that (so far I did not use it yet): // when a record is deleted, delete also the uploaded files related to that record (0|1) $delete_files_when_delete_record = 1; Have a look at lines 448 and 449 in the config file
  13. juergen_mueller

    Implemented Disable header for public pages

    .... the "fixed-footer" as well for smaller devices
  14. juergen_mueller

    Implemented Disable header for public pages

    Yes, I thought so to that this might be an option. Seems to work. Thanks a lot
  15. juergen_mueller

    Implemented Disable header for public pages

    Hi, I'd like to hide the the header or at least the login button for public pages.. Maybe, there's already a solution / work around for that?
Top