You are not logged in.
#1 2009-05-21 14:33:28
- monte
- New member
- Registered: 2009-05-21
- Posts: 1
Undefined variable: albumcover
Any Ideas?
Both errors are in the admin area:
PHP Notice: Undefined variable: albumcover in F:\webs\monte\dgmusic\gallery\admin.php on line 163
Undefined index: c in F:\webs\monte\dgmusic\gallery\admin.php on line 35
Thanks
Monte
Last edited by monte (2009-05-21 14:39:39)
Offline
2009-05-21 14:33:28
- Advert
#2 2009-05-22 03:58:17
- idut
- Administrator
- Registered: 2007-08-11
- Posts: 108
Re: Undefined variable: albumcover
If you have access to your php.ini file, you should change the error reporting setting from "E_ALL" to something like "E_ALL & ~E_NOTICE".
You can also put this line at the top of the admin.php file: ini_set("display_errors", 0);
These aren't errors, they are actually just notices and they don't normally show as php is normally not set to show these.
This will be fixed in the next release.
Offline
