MyBB Community Forums

Full Version: Problem With Plugin Activation
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am making a plugin, but I'm having the following issue:

When I press 'Install and Activate', it says 'Plugin Activated!' and all of the functions run as expected.

However, it still says 'Install and Activate', and the Deactivate or Uninstall links refuse to appear.

Please help me out Sad The code is still private, so I prefer to do this by PM.
Have you verified the content of your function YourPlugin_is_installed()?
This is my is_installed function:

function donationpage_is_installed()
{
	global $db;

	if($db->table_exists("dp"))
	{
		return true;
	}

	return false;
}
dp is the table prefix.
so... does the mybb_dp table exist or not?
Nope Smile. I've got it fixed, thanks.