I can’t edit albums as administrator
what happens? ( error message or … )
Do you have the Album Admin menu item in the wp sidebar?
No errors. It is just not shown. It is only shown the title and the description. The author is a select tag with no options.
And yes, I have the Album Admin menú. Indeed, it happens when I access to any existing album in the Album Admin. Any idea?
How many registered users are there on your system?
add to wp-config.php:
define('WP_DEBUG', true);
open the album admin page again and hope for an errormessage, that i would like to know.
MANY registered users. I’d prefer not to use debug mode, as every time there are visitors.
However, I’ve seen this error on the Firebug console:
“NetworkError: 500 Internal Server Error – http://site/wp-admin/admin.php?page=wppa_admin_menu&tab=edit&edit_id=34&wppa_nonce=ecd200feb3”
This may help to find out the issue…
Sure.
If you are cpable of editing php files, do the following:
in wppa-album-admin-autosave.php on line 238 it reads:
<select onchange="wppaAjaxUpdateAlbum(<?php echo $edit_id ?>, 'owner', this)" ><?php wppa_user_select($albuminfo['owner']); ?></select>
Remove the line completely.
This will remove the user selection box. There are too many users to load them all in memory by sql for the slection box. You will not be able to change ownership of album. If you can live with this for the moment, would be nice.
I will prepare a better solution in a later version.
Perfect! I can live with this 😉 Thank you very much.
Forgot to mark as solved.