Auto Social Poster Error : You Do Not Have Sufficient Permissions to Access This Page
WordPress 2.8.x contains changes to improve the security of plugins by ensuring that only correctly registered plugin pages can be accessed. This change has broken a number of plugins, like Auto Social Poster (ASP) plugin.
You’ve installed Auto Social Poster (ASP) plugin. When you try to access its settings page, you get the error: You do not have sufficient permissions to access this page.
What is Auto Social Poster?
Auto Social Poster is a simple plugin for Wordpress that will automatically submit all posts you publish to your social bookmarking accounts. You can choose to submit to only a handful of social bookmarking sites every time you publish a post. Autosocial Poster makes your submissions look less like spam. Auto Social Poster is a paid plugin
Auto Social Poster 3.91 not compatible with Wordpress 2.8.x. So How to solve this Auto Social Poster Plugin problem? How to making your broken plugin work again with WordPress 2.8.x?
Don’t worry, man!, the solution available here, you don’t need to downgrade your wordpress.
Ok, all you have to do is to open the mm_post.php file and look at line 800:
800 |
add_action ('admin_head', 'mm_add_menu'); |
801 |
add_action ('publish_post', 'mm_post'); |
802 |
add_action ('plugins_loaded', 'mm_init_cron'); |
803 |
add_filter ('the_content', 'mm_make_tags', - 10001); |
Change it to:
800 |
add_action ('admin_menu', 'mm_add_menu'); |
801 |
add_action ('publish_post', 'mm_post'); |
802 |
add_action ('plugins_loaded', 'mm_init_cron'); |
803 |
add_filter ('the_content', 'mm_make_tags', - 10001); |
Hope this post make your life easier. See You !