Title: Problem with Calculation
Last modified: September 25, 2019

---

# Problem with Calculation

 *  Resolved [SimonSEEZ](https://wordpress.org/support/users/simonseez/)
 * (@simonseez)
 * [6 years, 8 months ago](https://wordpress.org/support/topic/problem-with-calculation-3/)
 * Hello,
 * Hope you are doing great.
 * I recently created a game and I am having errors calculating the results. I have
   used the Force Calculation option but I keep getting this error
 * Score and ranking calculation
    Please do not interrupt this process. Sit back
   and relax, this may take a while 🙂
 * Not Found
 * Time elapsed: 00:00:12
    Estimated time left: 00:01:02
 * I tried to use this option but my site became inaccessible after I modified the
   wp-config file. I have restored the site now
    <?php define( ‘FOOTBALLPOOL_FORCE_CALCULATION’,
   true );
 * Kindly assist,
 * Regards,
    Simon
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fproblem-with-calculation-3%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  Plugin Author [AntoineH](https://wordpress.org/support/users/antoineh/)
 * (@antoineh)
 * [6 years, 8 months ago](https://wordpress.org/support/topic/problem-with-calculation-3/#post-11980223)
 * If you want to force the calculation, you only have to use the following line
   in your wp-config.php file:
 * `define( 'FOOTBALLPOOL_FORCE_CALCULATION' , true );`
 * Remember to remove the line after a calculation has finished successfully.
 * If the problem persists, then maybe you can give me temp access to your admin.
   I can then try to do some debugging.
 *  Thread Starter [SimonSEEZ](https://wordpress.org/support/users/simonseez/)
 * (@simonseez)
 * [6 years, 8 months ago](https://wordpress.org/support/topic/problem-with-calculation-3/#post-11980538)
 * Hello AntioneH,
 * Thank you for your feedback.
 * I added it to the wp=config.php file and ran the force calculation from the help
   page but still had the same error as I shared earlier.
 * I would be open to sharing access to my admin section for you to have a look 
   at. Can I share it here?
 * See below my wp-config extract here, possibly you can review how I added it for
   any errors as well.
 * Best Regards,
    Simon
 *     ```
       <?php
       ini_set('memory_limit', '-1');
       /**
        * The base configurations of the WordPress.
        *
        * This file has the following configurations: MySQL settings, Table Prefix,
        * Secret Keys, WordPress Language, and ABSPATH. You can find more information
        * by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
        * wp-config.php} Codex page. You can get the MySQL settings from your web host.
        *
        * This file is used by the wp-config.php creation script during the
        * installation. You don't have to use the web site, you can just copy this file
        * to "wp-config.php" and fill in the values.
        *
        * @package WordPress
        */
   
       // ** MySQL settings - You can get this info from your web host ** //
       /** The name of the database for WordPress */
       define( 'DB_NAME', 'canoncre_infx' );
   
       /** MySQL database username */
       define( 'DB_USER', 'canoncre_infx' );
   
       /** MySQL database password */
       define( 'DB_PASSWORD', 'xxxxxxxxxxxxxxxxxxxxxx' );
   
       /** MySQL hostname */
       define( 'DB_HOST', 'localhost' );
   
       /** Database Charset to use in creating database tables. */
       define('DB_CHARSET', 'utf8');
   
       /** The Database Collate type. Don't change this if in doubt. */
       define('DB_COLLATE', '');
   
       /**#@+
        * Authentication Unique Keys and Salts.
        *
        * Change these to different unique phrases!
        * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
        * You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
        *
        * @since 2.6.0
        */
       define('AUTH_KEY',         'x');
       define('SECURE_AUTH_KEY',  'x');
       define('LOGGED_IN_KEY',    'x');
       define('NONCE_KEY',        'x');
       define('AUTH_SALT',        'x');
       define('SECURE_AUTH_SALT', 'x');
       define('LOGGED_IN_SALT',   'x');
       define('NONCE_SALT',       'x');
   
       define( 'FOOTBALLPOOL_FORCE_CALCULATION' , true );
       /** Trick for long posts */
       ini_set('pcre.recursion_limit',20000000);
       ini_set('pcre.backtrack_limit',10000000);
   
       /**#@-*/
   
       /**
        * WordPress Database Table prefix.
        *
        * You can have multiple installations in one database if you give each a unique
        * prefix. Only numbers, letters, and underscores please!
        */
       $table_prefix = 'wp_';
   
       /**
        * WordPress Localized Language, defaults to English.
        *
        * Change this to localize WordPress. A corresponding MO file for the chosen
        * language must be installed to wp-content/languages. For example, install
        * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
        * language support.
        */
       define('WPLANG', '');
       define('MEMORY_LIMIT','128MB');
       /**
        * For developers: WordPress debugging mode.
        *
        * Change this to true to enable the display of notices during development.
        * It is strongly recommended that plugin and theme developers use WP_DEBUG
        * in their development environments.
        */
       define('WP_DEBUG', false);
   
       define( 'AUTOSAVE_INTERVAL', 300 );
       define( 'WP_POST_REVISIONS', 5 );
       define( 'EMPTY_TRASH_DAYS', 7 );
       define( 'WP_CRON_LOCK_TIMEOUT', 120 );
       /* That's all, stop editing! Happy blogging. */
   
       /** Absolute path to the WordPress directory. */
       if ( !defined('ABSPATH') )
       	define('ABSPATH', dirname(__FILE__) . '/');
   
       /** Sets up WordPress vars and included files. */
       require_once(ABSPATH . 'wp-settings.php');
       ```
   
    -  This reply was modified 6 years, 8 months ago by [t-p](https://wordpress.org/support/users/t-p/).
    -  This reply was modified 6 years, 8 months ago by [Steven Stern (sterndata)](https://wordpress.org/support/users/sterndata/).
 *  Thread Starter [SimonSEEZ](https://wordpress.org/support/users/simonseez/)
 * (@simonseez)
 * [6 years, 8 months ago](https://wordpress.org/support/topic/problem-with-calculation-3/#post-11986717)
 * Hello AntioneH,
 * Hope you are doing great.
 * Please, I still await your feedback. I am currently running a league using the
   plugin and my ranking is two games behind. Players are beginning to complain.
 * Best Regards,
    Simon
 *  Plugin Author [AntoineH](https://wordpress.org/support/users/antoineh/)
 * (@antoineh)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/problem-with-calculation-3/#post-12096485)
 * Hi Simon,
 * I am sorry, but I kinda lost track of the status of your problem. If the calculation
   is still giving problems, I would want to suggest to get in touch with your webhosting
   company to request if they can give some assistance. The error/message “Not Found”
   is not generated by my code, which makes me think there is another problem (maybe
   the AJAX script is being blocked).
 * Or, if I look at the amount of users in your ranking, it could also be that you’re
   running into some problem on the server (resources). You can try to find out –
   with the help of your hosting company – if this is the case and if you can do
   anything to optimize performance.

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

The topic ‘Problem with Calculation’ is closed to new replies.

 * ![](https://ps.w.org/football-pool/assets/icon-256x256.png?rev=983880)
 * [Football Pool](https://wordpress.org/plugins/football-pool/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/football-pool/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/football-pool/)
 * [Active Topics](https://wordpress.org/support/plugin/football-pool/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/football-pool/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/football-pool/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [AntoineH](https://wordpress.org/support/users/antoineh/)
 * Last activity: [6 years, 6 months ago](https://wordpress.org/support/topic/problem-with-calculation-3/#post-12096485)
 * Status: resolved