PDA

View Full Version : error after updating social metadata plugin



autocy
September 25, 2019, 05:41 AM
i get this error after updating social plugin in frontend:
Fatal error: Class rlSocialMetaData contains 2 abstract methods and must therefore be declared abstract or implement the remaining methods (Flynax\Interfaces\PluginInterface::install, Flynax\Interfaces\PluginInterface::uninstall) in /home/autocy/public_html/plugins/socialMetaData/rlSocialMetaData.class.php on line 23

Rudi
September 25, 2019, 06:22 AM
Hello,

We are sorry for the inconveniences caused by the last update

it will be resolved soon

meanwhile, apply this fix:

go to ftp > plugins > socialMetaData > rlSocialMetaData.class.php > at the very bottom of the file before }

insert:


/**
* Install process
*
* @since X.X.X
* @todo - Remove when compatible will be >= 4.7.0
*/
public function install()
{}

/**
* Uninstall process
*
* @since X.X.X
* @todo - Remove when compatible will be >= 4.7.0
*/
public function uninstall()
{}

autocy
September 25, 2019, 06:29 AM
Thanks Rudi