akvbroek
Forum Replies Created
-
Forum: Plugins
In reply to: [Search Everything] error emails when posting new postIt looks like the issue is that the Zemanta API no longer exists. I commented out everything below line 180 in search-everything.php and I no longer receive the error and the non-API functions appear to work just fine. 🙂
Forum: Hacks
In reply to: Get a List of all Users in NetworkDuh. Thank you.
//Get All WordPress Users global $wpdb; $allusers = $wpdb->get_results("SELECT ID, user_nicename FROM $wpdb->users"); foreach ( $allusers as $u ) { echo '<p>$u->ID.' - '.$u->user_nicename.'</p>'; }Forum: Plugins
In reply to: [Anthologize] [Plugin: Anthologize] Unable to exportI am having the same problem. I get the following error:
HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request.This is a great plugin and I would love to use it, but I am not sure how to fix.
I haven’t heard back with a solution. But I figured out a bandaid. I found a way to make the plugin tables global so that all forms/fields/etc show up on every blog in my multi-site installation. As we are all one institution this should be ok for now. If it helps this is what I did.
In custom-contact-forms-util.php Line 60
// define('CCF_FORMS_TABLE', $prefix . 'customcontactforms_forms'); // define('CCF_FIELDS_TABLE', $prefix . 'customcontactforms_fields'); // define('CCF_STYLES_TABLE', $prefix . 'customcontactforms_styles'); // define('CCF_USER_DATA_TABLE', $prefix . 'customcontactforms_user_data'); // define('CCF_FIELD_OPTIONS_TABLE', $prefix . 'customcontactforms_field_options'); define('CCF_FORMS_TABLE', 'wp_customcontactforms_forms'); define('CCF_FIELDS_TABLE', 'wp_customcontactforms_fields'); define('CCF_STYLES_TABLE', 'wp_customcontactforms_styles'); define('CCF_USER_DATA_TABLE', 'wp_customcontactforms_user_data'); define('CCF_FIELD_OPTIONS_TABLE', 'wp_customcontactforms_field_options');I just submitted a bug report too.