Title: Doesn&#039;t work with PHP 7.0
Last modified: August 31, 2016

---

# Doesn't work with PHP 7.0

 *  Resolved [mpek](https://wordpress.org/support/users/mpek/)
 * (@mpek)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/doesnt-work-with-php-70/)
 * After switching server to PHP 7.0 (from 5.6) i got a blank screen, after login
   into WP (admin).
    After deleting the plugin, i could. If you need more assistance…
 * [https://wordpress.org/plugins/slash-admin/](https://wordpress.org/plugins/slash-admin/)

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

 *  Thread Starter [mpek](https://wordpress.org/support/users/mpek/)
 * (@mpek)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/doesnt-work-with-php-70/#post-7125467)
 * What to look for in database to delete the settings, after deleting the plugin
   with ftp?
 *  Plugin Author [Giorgos Sarigiannidis](https://wordpress.org/support/users/gsarig/)
 * (@gsarig)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/doesnt-work-with-php-70/#post-7125560)
 * I know, the plugin currently breaks with PHP7. It is my first priority for the
   next release, but I still haven’t found time to setup PHP7 and test it.
 * As for the database settings, you can check wp_options table for an entry named
   slashadmin_options.
 *  Thread Starter [mpek](https://wordpress.org/support/users/mpek/)
 * (@mpek)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/doesnt-work-with-php-70/#post-7125563)
 * ok, thank you for your answer. Is it enough to delete slashadmin_options to reopen
   what I restricted with Slash Admin or does it stay closed? It seems that it does…
 *  Plugin Author [Giorgos Sarigiannidis](https://wordpress.org/support/users/gsarig/)
 * (@gsarig)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/doesnt-work-with-php-70/#post-7125566)
 * Yes, all the plugin’s options are stored there.
 * To avoid messing with the database directly, you can use [delete_option](https://codex.wordpress.org/Function_Reference/delete_option).
 * For example, add the following code in your functions.php
 *     ```
       $option_name = 'slashadmin_options';
       delete_option( $option_name );
       ```
   
 * After clearing the settings (which will happen with a page reload) you can remove
   the code.
 *  Plugin Author [Giorgos Sarigiannidis](https://wordpress.org/support/users/gsarig/)
 * (@gsarig)
 * [10 years ago](https://wordpress.org/support/topic/doesnt-work-with-php-70/#post-7125829)
 * The latest version should fix the issue with PHP7

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

The topic ‘Doesn't work with PHP 7.0’ is closed to new replies.

 * ![](https://ps.w.org/slash-admin/assets/icon-256x256.jpg?rev=2841285)
 * [Slash Admin](https://wordpress.org/plugins/slash-admin/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/slash-admin/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/slash-admin/)
 * [Active Topics](https://wordpress.org/support/plugin/slash-admin/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/slash-admin/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/slash-admin/reviews/)

## Tags

 * [admin](https://wordpress.org/support/topic-tag/admin/)
 * [blank-screen](https://wordpress.org/support/topic-tag/blank-screen/)
 * [login](https://wordpress.org/support/topic-tag/login/)
 * [PHP 7.0](https://wordpress.org/support/topic-tag/php-7-0/)

 * 5 replies
 * 2 participants
 * Last reply from: [Giorgos Sarigiannidis](https://wordpress.org/support/users/gsarig/)
 * Last activity: [10 years ago](https://wordpress.org/support/topic/doesnt-work-with-php-70/#post-7125829)
 * Status: resolved