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
Hello,
I obtained a PHP warning on PHP 7.2 when trying to install wordpress-12factor using composer wordpress-setup-core-install.
composer wordpress-setup-core-install
PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /wordpress/wp-includes/compat.php on line 502
I fixed it replacing:
function __autoload( $classname ) { ... }
by
function spl_autoload_register( $classname ) { ... }
Thank you for your useful project!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I obtained a PHP warning on PHP 7.2 when trying to install wordpress-12factor using
composer wordpress-setup-core-install
.I fixed it replacing:
by
Thank you for your useful project!
The text was updated successfully, but these errors were encountered: