guidored
Forum Replies Created
-
It means editing the file that the warning occurs in.
Not really newbie stuff, but if you’re feeling brave:
Use ftp (or cpanel file editor) to log in to your site, and look in:
wp-content//plugins/nextgen-gallery/products/photocrati_nextgen/modules/nextgen_data/
The file you want is “package.module.nextgen_data.ph”
Scroll down to line 2497. The lines there will look like this:
if (!isset($meta[‘saved’])) {
$meta[‘saved’] = FALSE;
}Change it to:
if (!isset($meta[‘saved’])) {
//$meta[‘saved’] = FALSE;
}(Two backslashes at the start of line 2497 comments it out)
Save the file, and try reloading your website page.
If it works, great. If it doesn’t, undo your change and save it again.
NOTE: Even if it works, the next time you update NextGen it will overwrite these changes. But hopefully by then they’ll have fixed it properly…
… Solution taked from nextgen Gallery forums … I’m checking it.
Forum: Plugins
In reply to: [Moodle Course List Widget] Not showing coursesIf you are using database names other than moodle and table prefix other than mdl_ , you need to change the code manually or use the code I left in the support area.