nolash74
Forum Replies Created
-
Hello again. Now suddenly TWO of the feeds got updated, but none of the others. I tried poking around a bit in the database etc, but couldn’t at first glance find any settings to play around with.
I’m not asking you to solve the problem for me, but give me some pointers on where in the code/database to look. Thanks!
Hey.
Version is 4.2.1, thanks!
### Begin System Info ### ## Please include this information when posting support requests ## Multi-site: No SITE_URL: https://holbrook.no HOME_URL: https://holbrook.no Plugin Version: 4.2.1 WordPress Version: 3.7.3 Platform: Linux Browser Name: Firefox Browser Version: 30.0 User Agent String: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:30.0) Gecko/20100101 Firefox/30.0 PHP Version: 5.4.30 MySQL Version: 5.6.17-log Web Server Info: Apache PHP Safe Mode: No PHP Memory Limit: 256M PHP Post Max Size: 1999M PHP Time Limit: 30 WP_DEBUG: Disabled WP Table Prefix: Length: 3 Status: Acceptable Show On Front: posts Page On Front: #0 Page For Posts: #0 Session: Disabled Session Name: PHPSESSID Cookie Path: / Save Path: /tmp Use Cookies: On Use Only Cookies: On UPLOAD_MAX_FILESIZE: 1999MB POST_MAX_SIZE: 1999MB WordPress Memory Limit: 40MB DISPLAY ERRORS: On (1) FSOCKOPEN: Your server supports fsockopen. ACTIVE PLUGINS: All In One WP Security: v2.9 Bugerator: 1.1.6 Inline Ajax Comments: 1.2 Options Framework: 1.6 WP-PageNavi: 2.83 WP RSS Aggregator: 4.2.1 WP RSS Aggregator parametered feed echo: 1 WP SlimStat: 3.2.5 WP SlimStat Dashboard Widgets: 3.0.1 DEACTIVATED PLUGINS: Akismet: 2.5.9 FeedWordPress: 2013.0504 Hello Dolly: 1.6 Last.Fm Records: 1.7.4 Wordpress Statistics: 3.1.4 CURRENT THEME: Gordon: 1.2.0 ### End System Info ###
Forum: Plugins
In reply to: [Simple Links] No add media buttonHey no sorry there is no button like that in my view ??
Forum: Plugins
In reply to: [WassUp Real Time Analytics] No recordsThat did the trick. Peculiar fix. But thanks a lot ??
Forum: Plugins
In reply to: [Newsletter - Send awesome emails from WordPress] Remove resend welcomeSorry I must be blind. THanks!
Sorry about the strong-tags around the $hour var, that didn’t work as intended.
Well not really I’m using the plugin save function, and it uses update_post_meta.
But I’m guessing that the if/else check on hours has a typo here; the data type is originally $hours but in the check it’s $hour and the insert also uses $hours.
$date = sanitize_text_field( $_POST['sc_event_date'] ); $hours = sanitize_text_field( absint( $_POST['sc_event_time_hour'] ) ); $minutes = sanitize_text_field( absint( $_POST['sc_event_time_minute'] ) ); $am_pm = sanitize_text_field( $_POST['sc_event_time_am_pm']); $end_hour = sanitize_text_field( $_POST['sc_event_end_time_hour']); $end_minutes = sanitize_text_field( $_POST['sc_event_end_time_minute']); $end_am_pm = sanitize_text_field( $_POST['sc_event_end_time_am_pm']); $recurring = isset($_POST['sc_event_recurring']) ? $_POST['sc_event_recurring'] : ''; if( $am_pm == 'pm' && <strong>$hour</strong> < 12 ) <strong>$hour</strong> += 12; elseif( $am_pm == 'am' && $hour >= 12 ) <strong>$hour</strong> -= 12; $day = date( 'd', strtotime( $date ) ); $month = date( 'm', strtotime( $date ) ); $year = date( 'Y', strtotime( $date ) ); $final_date_time = mktime( $hours, $minutes, 0, $month, $day, $year ); update_post_meta($post_id, 'sc_event_date_time', $final_date_time); update_post_meta($post_id, 'sc_event_date', strtotime($date)); update_post_meta($post_id, 'sc_event_day', date('D', strtotime($date))); update_post_meta($post_id, 'sc_event_day_of_month', $day); update_post_meta($post_id, 'sc_event_month', $month); update_post_meta($post_id, 'sc_event_year', $year); update_post_meta($post_id, 'sc_event_time_hour', $hours); update_post_meta($post_id, 'sc_event_time_minute', $minutes); update_post_meta($post_id, 'sc_event_time_am_pm', $am_pm); update_post_meta($post_id, 'sc_event_end_time_hour', $end_hour); update_post_meta($post_id, 'sc_event_end_time_minute', $end_minutes); update_post_meta($post_id, 'sc_event_end_time_am_pm', $end_am_pm); update_post_meta($post_id, 'sc_event_recurring', $recurring);
Version 1.0.3
Forum: Plugins
In reply to: [Fundify Crowdfunding (Moved)] Backers not updatingGreat, this worked. THanks ??
Forum: Plugins
In reply to: [Fundify Crowdfunding (Moved)] Campaign TypesOk thanks.
I seem to remember from before that there is some geo-limitations on preapproved payments through paypal – that it’s not allowed in all countries. Would you know about that? It would be sad to purchase a plugin that can’t be used due to political mumbo jumbo
Forum: Plugins
In reply to: [Fundify Crowdfunding (Moved)] Backers not updatingOh btw, the backer count is not updating in the campaign admin view either, nor the total donation amount
Forum: Plugins
In reply to: [Fundify Crowdfunding (Moved)] Campaign TypesI have some include files called wepay, stripe and adaptive payments in the plugin dir. But I guess this doesn’t mean that they’re installed? I’m guessing an extra functionality that has to be paid for?
Forum: Plugins
In reply to: [Fundify Crowdfunding (Moved)] Campaign TypesI have the same problem. Astoundify v1.5, Easy Digital Downloads v 1.7.2, WordPress 3.6.
The over one month response time of the last post isn’t really promising for any help to this problem though.
Forum: Plugins
In reply to: [Fundify Crowdfunding (Moved)] Select template for campaign… so after reading a bit in crowdfunding.php a single campaign page should automatically pick single.php, single-download.php or single-campaign.php from either the theme folder or the crowdfunding subfolder in the theme folder.
Well, it doesn’t in my install. I have both a single.php and single-campaign.php file in both my theme folder and theme/crowdfunding folder, but it insists on using index.php
Any idea what could be wrong? Can’t see any post in the forum addressing it, and there’s not much doc in the plugin itself.
Thanks for your help and attention.
Forum: Plugins
In reply to: [Mp3 player] Flash player does not showGreat, thanks again for following this up!