Hiya,
I'm currently trying to export the configuration into its own private directory and the issue I was running into is that when I try to check for new configurations, they are brought in but I get the following notice:
Notice: Use of undefined constant DEBUG_BACKTRACE_IGNORE_ARGS - assumed 'DEBUG_BACKTRACE_IGNORE_ARGS' in ctools_configuration_check() (line 355 of /drupal/install/sites/all/modules/contrib/configuration/includes/configuration.ctools.inc).
Looking through this, DEBUG_BACKTRACE_IGNORE_ARGS is an option that is new to PHP >= 5.3.6. The simple solution might be to use FALSE instead?
Comments
Comment #1
tom friedhof commentedYeah that is 5.3 constant only. I'm suppressing that notice in the latest code. Not sure if that is the best way to handle issues when stuff like that isn't supported in previous versions of PHP, but you won't get the notices anymore if you pull the latest code running PHP 5.2.
Comment #2.0
(not verified) commentedBetter formatting.