Recent content by deep64blue

  1. deep64blue

    2FA - enabled by default upon new user registration

    One for Eugenio, I don't think that's something we can change / set up.
  2. deep64blue

    Upgrade to 12.7 fails

    That's correct - the process will ask you to place the zipped file in the updates folder at a later stage. I would check your permissions as the first step, make sure it can read both up and up23 and that the WebServer can create the temporary upgrade folder.
  3. deep64blue

    Table Values to Update from other table

    So you want to run multiple operations from one hook? I think it will all need to be in one function although you could do a PHP include to keep it neater.
  4. deep64blue

    Suddenly nothing is working....

    I was just going to say error 500 generally means something along those lines! Glad you know where to look.
  5. deep64blue

    table création

    'morocco/casablanca' is not a valid timezone - see https://www.php.net/manual/en/timezones.africa.php. Note the instructions in config.php:- // timezone, specify here your timezone (a list of available timezone here: http://php.net/manual/en/timezones.php) $timezone = 'Europe/Rome';
  6. deep64blue

    Form Configuration screen is blank

    Have you tried in different browsers and/or with incognito mode?
  7. deep64blue

    Is it possible to add users via database?

    Yes you can do this (at your own risk!), heres the code to insert a user "Joe" into the database with an email of "joe@example.com" and a password of 'changeme!' that will need to be changed when they log on, note I'm using a default group of 2:- INSERT INTO `YOURPREFIXHERE_users` (...
  8. deep64blue

    "Limited" admin

    I would do it by setting up views for dadabik_groups and dadabik_users and managing the permisisons for the views. Users and Groups have special permissions and processes (as you have found!) so best to avoid directly interacting with them. For one of my clients I had a similar scenario and I...
  9. deep64blue

    "Show link to record" not working

    I'm not sure why I'm not getting a link for the field "Secretary". Your current DaDaBIK version You are using DaDaBIK version 12.3-Aveto platinum, installed on Sep 17, 2024 (installation code: 1996066e991794ca04), the latest version of DaDaBIK is 12.5-Aveto released on Jan 14, 2025 You are...
  10. deep64blue

    Trouble with installation

    Can you access install.php from a browser and then share the full error messages please.
  11. deep64blue

    How to exclude ID_user from the insert form

    Set the permissions to No for everything and Dadbik will update it for you.
  12. deep64blue

    Data import (xlsx) with approx. 35,000 recs not completed

    Here's a script that might help debug this. <?php header('Content-Type: text/plain'); error_reporting(E_ALL); ini_set('display_errors', 1); echo "Debugging PHP Execution Time and Apache Timeout\n\n"; // Get PHP max execution time $phpMaxExecutionTime = ini_get('max_execution_time') ?: "Not...
  13. deep64blue

    Issues with public pages

    Can you double check that the public user is a member of the group public please.
  14. deep64blue

    Trouble with installation

    Looks like your web server isn't able to read your install files, like Eugenio says would be interested to see if this still happens on a fresh run.
  15. deep64blue

    Move uploaded file to another location, upon pressing SAVE button

    You want the "after_insert" hook then or am I missing something?
Top