Hi,
I Would like to send a note on Version upgrade from [Drupal 8.9.16,PHP 7.4, Mysql 5.7, Ubuntu 16.04] to [Drupal 8.9.16,PHP 7.4, Mysql 8.0.25, Ubuntu 20.04].
By using the New version, we had few conflicts in group module and that conflict was group is a reserved keyword. To mitigate the same, I had prefixed all tables in database and changed the settings accordingly. Post fix, I have an issue while login to the site and its redirect to Home page not to the user's page.
callBack
suddenly, on the live site I noticed that the callBacks are no longer executed.
I tried locally and the callBack code is executed.
I tried to change the name of the callBack and put an alert but it doesn't report any response.
I didn't understand what could have happened
I have controlalto and it no longer executes any callBack in any content Type
What tests can I do?
I'm trying to inspect the $variables that is available to a preprocess function, e.g.:
function mytheme_preprocess_node(&$variables) {
debug($variables);
...
}
It doesn't work (site just crash). Also tried dpm() and kint() with no luck. Google told me that others also struggle with this., but found nothing that actually worked.