deltafactory
Forum Replies Created
-
Forum: Plugins
In reply to: [User Role Editor] [Plugin: User Role Editor] No tag for version?Bump?
Forum: Plugins
In reply to: Admin Menu HelpCan you provide some more details and perhaps a list of what you’ve been trying and/or sample code?
When are you calling those functions? It should be after the right routines are loaded but before the page output begins. Ideally, use something like:
add_action( 'admin_menu', 'myplugin_menus' ); function myplugin_menus() { add_menu_page( ... ); //Fill proper arguments in.. add_submenu_page( ... ); //Fill proper arguments in.. }If you are trying to extend another plugin’s menu, make sure you’re creating your submenus after they create theirs. Try using a lower priority (higher number..) for the admin_menu action.
Finally, turn on debug mode so that you can see every little thing that’s going on. Good luck.
That column should be in there. I don’t know if it’s a newer field, but you should be able to deactivate and then reactivate the plugin to have it update the table fields. If not, perhaps debug mode will reveal the source of that error.
The other Notices are not a big deal though it would be great if they were addressed by the developer. *hint hint* 🙂
Forum: Plugins
In reply to: Not a single Newsletter Plug WorksIf they use wp_mail() as their sending routine, perhaps you can pair it with a good replacement that uses your SMTP settings. There also may be some options in your PHP config that need to be fixed.
Assuming it’s not on a live site, turn on WordPress debugging and you should see the database error. If you can post that it would help a lot.
Forum: Plugins
In reply to: wp e-commerce crashed my siteWordPress doesn’t need to be held accountable for unexpected conflicts introduced by two third-parties including functions with the same name in their libraries. The official plugin development documentation strongly suggests keeping components in their own namespace to prevent conflicts like this.
Deactivate one of the plugins referenced in the error message, probably WP E Commerce.
From their changelog, it looks like you can use an older version (pre-3.8.4) without the mentioned conflict. Consider filing a bug with both plugin developers.
I had a similar behavior when I researched the issue detailed in my post earlier. http://wordpress.org/support/topic/plugin-custom-contact-forms-quirky-behavior-on-windows
Check the MySQL config to see if sql-mode is set to STRICT_TRANS_TABLES.
Defining the constant WP_DEBUG as true should give you extra info you can use to find the actual source of the error.