stimsonm
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS (SSL)] 502 Proxy ErrorI am having a 502 proxy error only in the admin but seems very much like what you are dealing with. I am using this in wp-config: define(‘FORCE_SSL_ADMIN’, true);
its intermitent and i am using rackspace cloud sites as well.
Did you solve this? If so what did you do, I’m desperate.
Thanks
I confirmed this, this works great, thanks everyone.
Forum: Plugins
In reply to: [Active Directory Integration] How to display AD user attributes in templateI believe I figured this out. In the database there is a table called wp_usermeta where there are keys stored under the meta field which are all the additional attributes that come in with AD. In wp-content/plugins/buyddypress/bp-themes/bp-default/members/single/profile/profile-loop.php you add the following code after line 25 where it has this:
<td class="data"><?php bp_the_profile_field_value(); ?></td>
Add the following after:
<td> <?php global $bp; $adi_mail = get_user_meta( $bp->displayed_user->id, 'adi_mail', true ); echo '<p>Email: ' . $adi_mail . '</p>'; $adi_department = get_user_meta( $bp->displayed_user->id, 'adi_department', true ); echo '<p>Department: ' . $adi_department . '</p>'; ?> </td>
Forum: Plugins
In reply to: [Active Directory Integration] How to display AD user attributes in templateDid you ever figure this out?
Forum: Plugins
In reply to: Single Sign-on between AD and WPI also need this exact thing, could you tell me what you did?
Thanks
Forum: Plugins
In reply to: Single Sign-on between AD and WPI also need this exact thing, could you tell me what you did?
Thanks
beautiful, works perfectly. Thanks for all your help today.
that was it, nice. is there anyway to add a download to csv on the web page with that table?
yes, Form: 1 and there is data in there
worked perfectly, thanks, one more question, I’m trying to display the table on a page using the shortcode: [cfdb-table form=”1″] and i even tried this: [cfdb-datatable form=”1″] but the page is blank?
Any ideas?
Thanks again
That worked, thank a ton, this is a great plugin, exactly what I needed.
Take care
great thanks Michael, that killed one of the errors and I see the table now but I still have this error: Warning: Division by zero in /var/www/vhosts/mydomainname.org/httpdocs/wp-content/plugins/contact-form-7-to-database-extension/CF7DBPlugin.php on line 980
Any ideas on that one?
Thanks Michael, I’ll block a day off and upgrade that, things never go smoothly ?? Great plugin, can’t wait to use it.
Take care
great thanks, one more question, how do you add a field at the beginning