“Fatal error: Call-time pass-by-reference has been removed; If you would like to pass argument by reference, modify the declaration of do_action(). in /wp-content/plugins/image-store/_inc/admin.php on line 573”
Open the file image-store/_inc/admin.php and locate this code in line 573
do_action('ims_admin_init', &$this);
and replace it with this
do_action('ims_admin_init', $this);