If both plugins, so jetpack and Publish has enabled Publish 2 Ping.fm, is no longer with the jetpack statistics.
That’s all I have not noticed, or have it deleted.
https://www.ads-software.com/extend/plugins/publish-2-pingfm/
]]>It works – use the ping.fm -> email and bit.ly.
Tested it and can see it posted in twitter, no problem at all ??
https://www.ads-software.com/extend/plugins/publish-2-pingfm/
]]>Everything else works fine, but posts two messages on twitter.
]]>In the php/admin.php file is the following section:
$page = add_submenu_page('options-general.php',
'Publish 2 Ping.fm Settings',
'Publish 2 Ping.fm', 9, basename(__FILE__),
array(&$this, 'printAdminPage'));
The “basename(__FILE__)” turns into “admin.php”. So, this section of code declares that the plugin’s admin menu page is located at domain.com/wp-admin/admin.php. Since most generic admin pages are accessed as domain.com/wp-admin/admin.php?page=pagename, this section of code is causing issues with some plugin and theme admin pages. Affected pages simply produce the following error:
You do not have sufficient permissions to access this page.
Changing “basename(__FILE__)” to “publish-2-pingfm” fixes the issue.
]]>