geekonthemove
Forum Replies Created
-
Perhaps. I think it is worth a try. I’m afraid I can’t help you with the other error messages. This fix I proposed only works with the first error message you mentioned:
Notice: register_uninstall_hook was called incorrectly. Only a static class method or function can be used in an uninstall hook. Please see Debugging in WordPress for more information. (This message was added in version 3.1.) in /home/microl/microscope.org.ua/www/wp/wp-includes/functions.php on line 2959
Have you edited the code in some way?
Sure you can. Go to Gallery->Options->Thumbnails and set the desired size of the thumbnail. Then Gallery->Options->Gallery and set the number of pictures per page to 1. As simple as that. Haven’t tried it myself, but that’s the theory anyways.
Hope it works.
This has already been solved in another thread, here:
[resolved] register_uninstall_hook was called incorrectly
Just change
register_uninstall_hook( $this->plugin_name, array(&$this, ‘uninstall’)
back into
register_uninstall_hook( $this->plugin_name, array(‘nggLoader’, ‘uninstall’)
in nggallery.phpCredit to ZjanPreijde for the answer.
Here, try this one buddy. Worked for me.
[resolved] register_uninstall_hook was called incorrectly
Just change
register_uninstall_hook( $this->plugin_name, array(&$this, ‘uninstall’)
back into
register_uninstall_hook( $this->plugin_name, array(‘nggLoader’, ‘uninstall’)
in nggallery.phpCredit to ZjanPreijde