Steve Kemp

Results 3 comments of Steve Kemp

Ive tried this fix as well and its no longer working... same error: error: ea-apache24-mod_pagespeed-latest-stable.src.rpm cannot be installed

ive applied these fixes but am still getting Fatal Error from the functions.php file: pHP Fatal error: Uncaught Error: Call to undefined function create_function() in /home/USERNAME/public_html/wp/wp-content/themes/CherryFramework/functions.php:272 THE LINE IS: `add_filter('login_errors',create_function('$a',...

> > `add_filter('login_errors',create_function('$a', "return null;"));` > > create_function is deprecated. So, you may try like this; > > `add_filter('login_errors', function($a){ return null; });` cheers that sorted it out... only issue...