I am very Beginner to Drupal, And Currently I want to install 8.7.7 Drupal Version in My 7.2.19 Php version Xampp but During installation I got first Warning like
PHP OPCODE CACHING Not enabled PHP OPcode caching can improve your site's performance considerably. It is highly recommended to have OPcache installed on your server.
After that I added below code to Php.ini file
zend_extension="C:\xampp\php\ext\php_opcache.dll"
zend_extension=php_opcache.dll
Then I got other Fatal Error like,
Fatal error: Uncaught Error: Class 'Drupal\Component\Utility\OpCodeCache' not found in C:\xampp\htdocs\orange\core\install.php:37 Stack trace: #0 {main} thrown in C:\xampp\htdocs\orange\core\install.php on line 37
Can Anyone help me to solve this problem? Not working for me
zend_extension="C:\xampp\php\ext\php_opcache.dll"
zend_extension=php_opcache.dll
opcache.enable=1
opcache.enable_cli=1
opcache.memory_consumption=256
opcache.max_accelerated_files=2000
zend_extension
lines? (Perhaps addopcache.save_comments=1
andopcache.load_comments=1
.) Reference: drupal.org/docs/8/system-requirements/php-requirements#drupal-8 – Isaiah Nixon