Error Message on Website
-
I just tried to update the Fizzly plugin on my page but now I get
Warning: require_once(meta/Frizzly_Meta_Social_data.php): failed to open stream: No such file or directory in /home/lindseym/public_html/wp-content/plugins/frizzly/includes/includes/Frizzly_Includes.php on line 22
Fatal error: require_once(): Failed opening required ‘meta/Frizzly_Meta_Social_data.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/lindseym/public_html/wp-content/plugins/frizzly/includes/includes/Frizzly_Includes.php on line 22
I’ve checked there is a file in the location that looks like this
<?php
class Frizzly_Includes {
function __construct() {
$this->load_dependencies();
}function load_dependencies() {
$includes = array(
//OPTIONS
‘options/Frizzly_Options.php’,
‘options/Frizzly_General_Options.php’,
‘options/Frizzly_Share_Options.php’,
‘options/Frizzly_Follow_Options.php’,
//META
‘meta/Frizzly_Meta.php’,
‘meta/Frizzly_Meta_Social_data.php’
);foreach ( $includes as $include ) {
require_once $include;
}
}
}What do I need to do to amend it and make the website work again?
- The topic ‘Error Message on Website’ is closed to new replies.