Title: Error Code=100
Last modified: August 30, 2016

---

# Error Code=100

 *  Resolved [anemih](https://wordpress.org/support/users/anemih/)
 * (@anemih)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/error-code100/)
 * When my users try to vote for a photo they get the message: “Error Code=100 An
   error occurred while processing your rating request. Maybe you opened the page
   too long ago to recognize you. You may refresh the page and try again.” I had
   an older version, I updated everything and I get this error again. Of course 
   i refresh the page but still nothing changes. My website is [http://http://potohori.gr/](http://http://potohori.gr/)
 * [https://wordpress.org/plugins/wp-photo-album-plus/](https://wordpress.org/plugins/wp-photo-album-plus/)

Viewing 10 replies - 1 through 10 (of 10 total)

 *  Plugin Author [Jacob N. Breetvelt](https://wordpress.org/support/users/opajaap/)
 * (@opajaap)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/error-code100/#post-6753591)
 * Try logging out and in again. The security code ( nonce ) is likely to be outdated.
 *  Thread Starter [anemih](https://wordpress.org/support/users/anemih/)
 * (@anemih)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/error-code100/#post-6753719)
 * I already did and tried another pc as well…
 *  Plugin Author [Jacob N. Breetvelt](https://wordpress.org/support/users/opajaap/)
 * (@opajaap)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/error-code100/#post-6753740)
 * Can you supply a link to a page with a slideshow, and male sure one can vote 
   when logged out, so i can try it myself.
    I do not read greek, you know, so i
   can not navigate on the site.
 *  Thread Starter [anemih](https://wordpress.org/support/users/anemih/)
 * (@anemih)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/error-code100/#post-6753766)
 * On the left sidebar there is Είσοδος-Έξοδος. You can login with username: _[ 
   Redacted, do not post that here ]_
    Then on the right sidebar you can try toprated
   photos.
 * Only logged in users can see and rate the photos. If you want I can change that
   but I would prefer not.
 *  Plugin Author [Jacob N. Breetvelt](https://wordpress.org/support/users/opajaap/)
 * (@opajaap)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/error-code100/#post-6753773)
 * You have ratings, so it worked in the past.
    I see no strange things in the wppa
   generated html.
 * I suspect a conflict with another plugin, especially any plugin that speeds up
   the page by any means. Did you recently add such a plugin or changed settings
   of such a plugin?
 * Can you try eliminating the above by temporary de-activatig **All in One SEO 
   Pack** and **Google Analytics by Yoast** and any other plugin that you may have
   added lately?
 *  Thread Starter [anemih](https://wordpress.org/support/users/anemih/)
 * (@anemih)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/error-code100/#post-6753783)
 * It worked perfectly normal and suddenly it stopped. I deactivated both of them
   plus Jetpack, Google XML Sitemaps, Wp Super Cache. Nothing changed…
 *  Plugin Author [Jacob N. Breetvelt](https://wordpress.org/support/users/opajaap/)
 * (@opajaap)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/error-code100/#post-6753789)
 * 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);
       ```
   
 *  Thread Starter [anemih](https://wordpress.org/support/users/anemih/)
 * (@anemih)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/error-code100/#post-6753796)
 * i gave you administration rights. Do what ever you want to fix it please
 *  Plugin Author [Jacob N. Breetvelt](https://wordpress.org/support/users/opajaap/)
 * (@opajaap)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/error-code100/#post-6753801)
 * I found out.
 * Somebody has changed the theme, there is a part missing on every page.
    I installd
   atahualpa on my dev site and it works. On your site a part starting with:
 *     ```
       <!-- Footer -->
       ```
   
 * is missing. In that area the security code that is missing should be located.
   
   Did anybody remove `wp_footer()` from a template?
 * Please test on a different theme, or – if you are sure the theme is not modified–
   de-activate other plugins.
 *  Thread Starter [anemih](https://wordpress.org/support/users/anemih/)
 * (@anemih)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/error-code100/#post-6753823)
 * You where right, I rebuilted the theme. Thank you very much!

Viewing 10 replies - 1 through 10 (of 10 total)

The topic ‘Error Code=100’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-photo-album-plus.svg)
 * [WP Photo Album Plus](https://wordpress.org/plugins/wp-photo-album-plus/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-photo-album-plus/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-photo-album-plus/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-photo-album-plus/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-photo-album-plus/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-photo-album-plus/reviews/)

 * 10 replies
 * 2 participants
 * Last reply from: [anemih](https://wordpress.org/support/users/anemih/)
 * Last activity: [10 years, 6 months ago](https://wordpress.org/support/topic/error-code100/#post-6753823)
 * Status: resolved