juggledean
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: WP Jetpack]Thumbnails not showing if photon is enabledHave you tried putting wp.com into $ALLOWED_SITES in wp-content/themes/your_theme/timthumb.php ?
Forum: Networking WordPress
In reply to: multisite invalid key errorFound it! I was using a custom theme that selected the gallery3 db in the header. Switching to Twenty Eleven cured it.
I’ll try putting a mysql_select_db() call into my theme.
Thanks for the support.
Forum: Networking WordPress
In reply to: multisite invalid key errorI’m using three plugins: PDF24 Article To PDF, WordPress Importer, and WPtouch.
I’ve started hacking function wpmu_activate_signup($key) in wp-includes/ms-functions.php
It gets the correct key but a print_r($wpdb) just after
$signup = $wpdb->get_row( $wpdb->prepare(“SELECT * FROM $wpdb->signups WHERE activation_key = %s”, $key) );
reveals the database has not been selected and the function is using whatever db was searched previously.
wpdb Object ( [show_errors] => [suppress_errors] => [last_error] => Table ‘gallery3.ms_signups’ doesn’t exist
Much further down in the $wpdb printout [field_types] includes the correct [dbname] entry
So $wpdb knows the dbname but is not handing it off to $wpdb->prepare
Forum: Plugins
In reply to: [Enmask Captcha] [Plugin: Enmask Captcha] Server down, plugin not working?I’m seeing the same thing. No response on http or ping or host or dig
whois shows godaddy is the registrar, the nameserver ns1.enmask.com is also unresponsive.
enmasksteve https://www.ads-software.com/support/profile/enmasksteve last posted two weeks ago as if it was running.
@t.sjogren
Thanks for the short code, it saved me after a day of struggle. It worked with WP 3.3 and SVP 1.3.2
Forum: Plugins
In reply to: [WP-Polls] [Plugin: WP-Polls] show results on poll closingblockquote didn’t quite work I’ll try backticks
Change Result Header to <p style="text-align: center;"><strong>%POLL_QUESTION%</strong></p><ul class="wp-polls-ul"> Clear Result Body: Displayed When The User HAS NOT Voted Change Result Body: Displayed When The User HAS Voted to <li>Thank-you for voting</li> And you probably also want to delete <p style="text-align: center;"><a href="#ViewPollResults" onclick="poll_result(%POLL_ID%); return false;" title="View Results Of This Poll">View Results</a></p> from Voting Form Footer
Forum: Plugins
In reply to: [WP-Polls] [Plugin: WP-Polls] show results on poll closingYou can do it with the templates
Under Dashboard > Polls > Poll Templates
Under Poll Result Templates
Change Result Header to <p style=”text-align: center;”>%POLL_QUESTION%</p><ul class=”wp-polls-ul”>
Clear Result Body: Displayed When The User HAS NOT Voted
Change Result Body: Displayed When The User HAS Voted to
- Thank-you for voting
And you probably also want to delete <p style=”text-align: center;”>View Results</p>
from Voting Form FooterAt least this worked for me. There might be a more elegant way.