We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
since v4 of Symfony Symfony\Component\ClassLoader\ApcClassLoader is deprecated meaning the following code in settings.php throws an error
if ($settings['hash_salt']) { $prefix = 'drupal.' . hash('sha256', 'drupal.' . $settings['hash_salt']); $apc_loader = new \Symfony\Component\ClassLoader\ApcClassLoader($prefix, $class_loader); unset($prefix); $class_loader->unregister(); $apc_loader->register(); $class_loader = $apc_loader; }
Not too familiar with ApcClassLoader to know what the alternative is.
The text was updated successfully, but these errors were encountered:
Actually just seen this pull request #8
Sorry, something went wrong.
No branches or pull requests
since v4 of Symfony Symfony\Component\ClassLoader\ApcClassLoader is deprecated meaning the following code in settings.php throws an error
Not too familiar with ApcClassLoader to know what the alternative is.
The text was updated successfully, but these errors were encountered: