This problem seems to have broken the myGallery plugin in WP 2.9:
Things seem to work OK if those 2 lines are commented out as directed.
This problem seems to have broken the myGallery plugin in WP 2.9:
Things seem to work OK if those 2 lines are commented out as directed.
Yep, that worked for me.
1) Open the file:
your-blog/wp-content/plugins/mygallery/mygallery.php
2) Find these two lines:
require_once(ABSPATH . 'wp-includes/streams.php');
require_once(ABSPATH . 'wp-includes/gettext.php');
3) Add back-slashes in front of them so they look like this:
// require_once(ABSPATH . 'wp-includes/streams.php');
// require_once(ABSPATH . 'wp-includes/gettext.php');
4) Save and reactivate the mygallery plugin.
Thanks Gyrus for figuring this out.
FYI, make sure to either use // with a *space* after it, or you can use a # instead. Either one works if done properly...
This topic has been closed to new replies.