I want to insert a diagnostic message.
Either give me administrator rights, or – if you are capable of this – edit wppa-ajax.php around line 476 it reads:
// Make errortext
$errtxt = __( 'An error occurred while processing you rating request.' , 'wp-photo-album-plus');
$errtxt .= "\n".__( 'Maybe you opened the page too long ago to recognize you.' , 'wp-photo-album-plus');
$errtxt .= "\n".__( 'You may refresh the page and try again.' , 'wp-photo-album-plus');
$wartxt = __( 'Althoug an error occurred while processing your rating, your vote has been registered.' , 'wp-photo-album-plus');
$wartxt .= "\n".__( 'However, this may not be reflected in the current pageview' , 'wp-photo-album-plus');
change to:
// Make errortext
$errtxt = __( 'An error occurred while processing you rating request.' , 'wp-photo-album-plus');
$errtxt .= "\n".__( 'Maybe you opened the page too long ago to recognize you.' , 'wp-photo-album-plus');
$errtxt .= "\n".__( 'You may refresh the page and try again.' , 'wp-photo-album-plus');
$errtxt .= "\n\n".'Diagnostics: '."\n".serialize($_GET)."\n".serialize($_POST);
$wartxt = __( 'Althoug an error occurred while processing your rating, your vote has been registered.' , 'wp-photo-album-plus');
$wartxt .= "\n".__( 'However, this may not be reflected in the current pageview' , 'wp-photo-album-plus');
I.e. insert line:
$errtxt .= "\n\n".'Diagnostics: '."\n".serialize($_GET)."\n".serialize($_POST);