我在服务器上收到以下错误
Fatal error: Call to undefined function cache_get() in includes/module.inc on line 665
Drush command terminated abnormally due to an unrecoverable error. [error]
Error: Call to undefined function cache_get() in includes/module.inc, line 665
如何解决?
在我的情况下,Ubuntu默认设置为使用php7。假设您的服务器也使用php5,Drush需要php5 ...试试
—
Jorge Orpinel '16
sudo ln -sfn /usr/bin/php5 /etc/alternatives/php
function cache_get() { return false; }
来发现了潜在的问题settings.php
。