Title: Plugin doesn&#8217;t work anymore after an update
Last modified: October 24, 2023

---

# Plugin doesn’t work anymore after an update

 *  Resolved [nitneuq22](https://wordpress.org/support/users/nitneuq22/)
 * (@nitneuq22)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-anymore-after-an-update/)
 * Hello, I’m facing an issue since an update of the PublishPress Future plugin.
   None of my expiration dates work anymore. I try deactivating all of my plugin
   but this one, I also tried to deactivate it then reactivate it, still nothing.
   When I turn on the WP_DEBUG, it shows this message : “**Erreur de la base de 
   données WordPress :** [Table ‘rvcom2_chessyles.cmdus_ppfuture_actions_args’ doesn’t
   exist]
   `SELECT * FROM cmdus_ppfuture_actions_args WHERE post_id = 21900 ORDER
   BY enabled DESC, id DESC LIMIT 1`“So it’s a database problem, but I don’t really
   understand why. Can someone help me fix the issue please? My client needs this
   plugin and I don’t know what to do
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fplugin-doesnt-work-anymore-after-an-update%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 15 replies - 1 through 15 (of 29 total)

1 [2](https://wordpress.org/support/topic/plugin-doesnt-work-anymore-after-an-update/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/plugin-doesnt-work-anymore-after-an-update/page/2/?output_format=md)

 *  Plugin Support [Riza Maulana Ardiyanto](https://wordpress.org/support/users/rizaardiyanto/)
 * (@rizaardiyanto)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-anymore-after-an-update/#post-17146767)
 * Hi [@nitneuq22](https://wordpress.org/support/users/nitneuq22/),
 * Thanks for using our plugin.
 * Could you please try “Run Migration” in the diagnostic tab?
 * ![](https://i0.wp.com/i.imgur.com/QZM0pKx.png?ssl=1)
 *  Thread Starter [nitneuq22](https://wordpress.org/support/users/nitneuq22/)
 * (@nitneuq22)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-anymore-after-an-update/#post-17146887)
 * Hi, I just tried, it didn’t do anything :/
 *  Plugin Support [Riza Maulana Ardiyanto](https://wordpress.org/support/users/rizaardiyanto/)
 * (@rizaardiyanto)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-anymore-after-an-update/#post-17148828)
 * [@nitneuq22](https://wordpress.org/support/users/nitneuq22/) Could you inform
   us what previous version you are using?
 *  Thread Starter [nitneuq22](https://wordpress.org/support/users/nitneuq22/)
 * (@nitneuq22)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-anymore-after-an-update/#post-17149620)
 * Hello, I was using 2.9.0, and it worked then
 *  Plugin Support [Riza Maulana Ardiyanto](https://wordpress.org/support/users/rizaardiyanto/)
 * (@rizaardiyanto)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-anymore-after-an-update/#post-17150118)
 * [@nitneuq22](https://wordpress.org/support/users/nitneuq22/) Could you please
   check if you could see this button?
 * ![](https://i0.wp.com/i.imgur.com/wAtODRv.png?ssl=1)
 *  Thread Starter [nitneuq22](https://wordpress.org/support/users/nitneuq22/)
 * (@nitneuq22)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-anymore-after-an-update/#post-17150181)
 * I have it, and I already clicked it but it showed an error and did nothing else
 *  Plugin Support [Riza Maulana Ardiyanto](https://wordpress.org/support/users/rizaardiyanto/)
 * (@rizaardiyanto)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-anymore-after-an-update/#post-17150328)
 * [@nitneuq22](https://wordpress.org/support/users/nitneuq22/) Do you mind sharing
   some screenshot of the error when you click that button?
 *  Thread Starter [nitneuq22](https://wordpress.org/support/users/nitneuq22/)
 * (@nitneuq22)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-anymore-after-an-update/#post-17151702)
 * Hi !
 * Here is the message : “Database Schema couldn’t be fixed. Please contact support
   team” (I translated it from french so it may be not the exact translation)
 * > [View post on imgur.com](https://imgur.com/a/ZhrcK2X)
 *  Plugin Support [Riza Maulana Ardiyanto](https://wordpress.org/support/users/rizaardiyanto/)
 * (@rizaardiyanto)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-anymore-after-an-update/#post-17156907)
 * [@nitneuq22](https://wordpress.org/support/users/nitneuq22/) Please try run this
   SQL query manually:
 *     ```wp-block-code
       CREATE TABLE wp_ppfuture_actions_args (
                   id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
                   cron_action_id bigint(20) UNSIGNED NOT NULL,
                   post_id bigint(20) UNSIGNED NOT NULL,
                   enabled tinyint(1) NOT NULL DEFAULT '0',
                   scheduled_date datetime NOT NULL,
                   created_at datetime NOT NULL,
                   args varchar(250) NOT NULL,
                   PRIMARY KEY  (id),
                   KEY post_id (post_id, id),
                   KEY enabled_post_id (post_id, enabled, id),
                   KEY cron_action_id (cron_action_id, id),
                   KEY enabled_cron_action_id (cron_action_id, enabled, id)
               ) ENGINE=InnoDB COLLATE utf8_general_ci;
       ```
   
 *  Thread Starter [nitneuq22](https://wordpress.org/support/users/nitneuq22/)
 * (@nitneuq22)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-anymore-after-an-update/#post-17160172)
 * Hello, it didn’t work either. I don’t know why it does this
 *  Plugin Support [Riza Maulana Ardiyanto](https://wordpress.org/support/users/rizaardiyanto/)
 * (@rizaardiyanto)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-anymore-after-an-update/#post-17161714)
 * Did it show any error when you run those SQL query?
 *  Thread Starter [nitneuq22](https://wordpress.org/support/users/nitneuq22/)
 * (@nitneuq22)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-anymore-after-an-update/#post-17163157)
 * No, it successfully created the table
 *  Plugin Support [Riza Maulana Ardiyanto](https://wordpress.org/support/users/rizaardiyanto/)
 * (@rizaardiyanto)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-anymore-after-an-update/#post-17164416)
 * So the tables is created successfully and the issue persist? Do you still see
   any error in the Future setting?
 *  Thread Starter [nitneuq22](https://wordpress.org/support/users/nitneuq22/)
 * (@nitneuq22)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-anymore-after-an-update/#post-17164673)
 * Indeed the issue persist whereas the table is successfully created. The error
   is still the same unfortunately
 *  Plugin Support [Riza Maulana Ardiyanto](https://wordpress.org/support/users/rizaardiyanto/)
 * (@rizaardiyanto)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-anymore-after-an-update/#post-17166560)
 * [@nitneuq22](https://wordpress.org/support/users/nitneuq22/) Could you please
   check if the table prefix matches the one you use for that site? _**wp\_**_ is
   the default one, but maybe you are using something else.

Viewing 15 replies - 1 through 15 (of 29 total)

1 [2](https://wordpress.org/support/topic/plugin-doesnt-work-anymore-after-an-update/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/plugin-doesnt-work-anymore-after-an-update/page/2/?output_format=md)

The topic ‘Plugin doesn’t work anymore after an update’ is closed to new replies.

 * ![](https://ps.w.org/post-expirator/assets/icon-256x256.png?rev=3569472)
 * [Schedule Post Changes With PublishPress Future: Unpublish, Delete, Change Status, Trash, Change Categories](https://wordpress.org/plugins/post-expirator/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/post-expirator/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/post-expirator/)
 * [Active Topics](https://wordpress.org/support/plugin/post-expirator/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/post-expirator/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/post-expirator/reviews/)

## Tags

 * [database](https://wordpress.org/support/topic-tag/database/)
 * [expiration](https://wordpress.org/support/topic-tag/expiration/)

 * 29 replies
 * 2 participants
 * Last reply from: [nitneuq22](https://wordpress.org/support/users/nitneuq22/)
 * Last activity: [2 years, 6 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-anymore-after-an-update/page/2/#post-17242741)
 * Status: resolved