Hello,
I am getting a number of "Undefined Index" msgs in my admin console after a fresh installation of Piwigo.. :/
Additionally, I am having issues similar to this post when attempting to manage users and groups..:
http://piwigo.org/forum/viewtopic.php?id=24666
When I click on "+Add a user", the address in my browser address bar changes from
http://<Site>/piwigo/admin.php?page=user_list to
http://<Site>/piwigo/admin.php?page=user_list#
(The difference is the "#" on the end.)
but nothing else happens.
Piwigo version: 2.7.2
Environment
Operating system: Server 2003 R2
PHP: 5.3.29
MySQL: 5.5.24
Graphics Library: GD bundled (2.1.0 compatible)
I would entertain the perms, but it is a windows machine, I know that apache already has the necessary perms to do whatever it needs..
Thanks,
Squirre1
Also wanted to add some of the examples...
User Comments Notice: Undefined Index: TABSHEET_TITLE in P6jhns^15d41139d40746a1cd7c528e79a35999f4e77d34.File.Comments.Tpl.Php
2 comments Notice: Undefined index: NB_PENDING_COMMENTS in p6jhns^4f0b28a80c2eb1d50e72b17d858c88efdba2a083.file.intro.tpl.php
Comments Notice: Undefined index: NB_PENDING_COMMENTS in p6jhns^cd65ec4896d3640609e8ce01c54c07bb406d9905.file.admin.tpl.php
Also, when working in the batch manager, I am not able to Select All, None or Invert or any of the other options it allows you for selecting working images..
Thanks,
Squirre1
Interesting that there have been a number of piwigo member replies to other posts.?.? Anyone have any ideas?
Ok... So a little more information on this..
After reading some other posts, I had tried setting error_reporting in php.ini to E_ALL & ~E_NOTICE, but I didnt know that piwigo was setting it in the script itself.. So then I set, $conf['show_php_errors'] to E_ALL & ~E_NOTICE yet it was still showing the errors.. Soo in common.inc.php where the ini_set for show_php_errors I put echos pre and post ini_set transaction and it does not appear that the ini_set is working, each time it was returning code 2047, not the 30711 or 30712 it should be. In the end I had to set display_errors to false in order to get past the notices..
Once I stopped the notices from outputting, it fixed the add user and add group sections as well. So something is not quite right about how that is done, I looked to see if there is ini_set bugs in the 5.3.29 release, but did not see any...
Thanks,
Squirre1
Actually, I just found out...
http://php.net/manual/en/configuration.changes.php
I have a php_admin_value for error_reporting set to 2047.. With php_admin_value set, ini_set values will not take affect.