For anyone interested, I ran into this same problem when I installed the plugin and was able to fix it. Very simple change:
After installing the plugin and getting the error, go back to the installed plugins screen and you will see the plugin is installed but not activated.
Go to the plugin in the list of installed plugins and click the “Edit” link. It should now go to the edit screen for the plugin. In the top part of the file you will see this code:
<?php
/**
* Plugin Name: Page Specific Menu Items
* Plugin URI: https://www.www.ads-software.com/plugins
* Description: This plugin allows you to select menu items page wise.
* Version: 1.6
* Author: Dharma Poudel (@rogercomred)
* Author URI: https://www.twitter.com/rogercomred
* Text Domain: page-specific-menu-items
* Domain Path: /l10n
*/
All you have to do is delete 1 of the asterisks on the 2nd line so it looks like this:
<?php
/*
* Plugin Name: Page Specific Menu Items
* Plugin URI: https://www.www.ads-software.com/plugins
* Description: This plugin allows you to select menu items page wise.
* Version: 1.6
* Author: Dharma Poudel (@rogercomred)
* Author URI: https://www.twitter.com/rogercomred
* Text Domain: page-specific-menu-items
* Domain Path: /l10n
*/
Then click save, go back to plugins screen and click activate and you are good to go.