David July
Forum Replies Created
-
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] PHP Errors Since Upgrade To 2.5.2I was current with the previous release, upgrading from 2.5.1 to 2.5.2. Thank you for looking into it.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Calendar Grid HTML Validation ErrorAll is well in 2.4.12. Thanks for your help with this!
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Calendar Grid HTML Validation ErrorConfirmed; I swapped rows 1367 and 1368 and it is now working correctly. Thanks!
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Calendar Grid HTML Validation ErrorThanks, Joe. Unfortunately,
$close_th
produces the same incorrect output.</th scope=”col”>
Ok, understood. Thanks for the quick reply!
Forum: Plugins
In reply to: [Redirection] flushing message in PHP error.log after Update to 2.3.13Thanks for the analysis, Phil. I can also confirm this behavior.
I finally received some errors that may be related.
PHP Warning: Cannot modify header information – headers already sent by (output started at ../wp-content/themes/…/header.inc:4) in ../wp-includes/pluggable.php on line 952
PHP Warning: Cannot modify header information – headers already sent by (output started at ../wp-content/themes/…/header.inc:4) in ../wp-content/plugins/better-wp-security/core/class-itsec-lockout.php on line 322
The line referenced is a call to wp-blog-header.php.
However, on another site experiencing this issue the line referenced in the error was the opening <html> tag.
I am seeing something similar with version 4.4.6 installed. If I click around around the website, every so often it serves up a blank page with no source code. This is occurring, seemingly randomly, on the front-end as well as administration side. I have not been able to pin down any related errors in the server logs, nor determine any pattern. Unlike the original poster, I am not having any lockout issues.
Forum: Plugins
In reply to: [SendPress Newsletters] Posts/Pages Vanish from Admin / Database ClutterOk, thank you.
Forum: Plugins
In reply to: [SendPress Newsletters] Posts/Pages Vanish from Admin / Database ClutterThank you. Here is the information you requested.
### Begin System Info ### Multi-site: No SITE_URL: [REDACTED] HOME_URL: [REDACTED] SP Version: 0.9.9.3 WordPress Version: 3.8.1 Platform: Windows Browser Name: Firefox Browser Version: 28.0 User Agent String: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0 Database Tables: wp_sendpress_subscribers_event OK wp_sendpress_report_url OK wp_sendpress_subscribers_status OK wp_sendpress_subscribers OK wp_sendpress_list_subscribers OK wp_sendpress_queue OK Sending Method: SendPress_Sender_Website PHP Version: 5.4.26 MySQL Version: 5.6.16 Web Server Info: Apache PHP Memory Limit: 128M PHP Post Max Size: 8M WP_DEBUG: Disabled WP Table Prefix: Length: 3 Status: Acceptable Show On Front: page Page On Front: Home #2 Page For Posts: Home #2 Session: Disabled Session Name: PHPSESSID Cookie Path: / Save Path: /tmp Use Cookies: On Use Only Cookies: On UPLOAD_MAX_FILESIZE: 100MB POST_MAX_SIZE: 8MB WordPress Memory Limit: 64MB WP_DEBUG: Off DISPLAY ERRORS: N/A FSOCKOPEN: Your server supports fsockopen. ACTIVE PLUGINS: Admin Interface: 1.0.0 Akismet: 2.6.0 Codepress Admin Columns: 2.1.4 Disable Autosave: Disable wpautop: 1.0 Easy WP SMTP: 1.0.7 Exec-PHP: 4.9 Filled In: 1.8.13 Google XML Sitemaps: 3.4 HTML Purified: 0.7 List category posts: 0.46.4 Map Categories to Pages: 1.3.2 My Calendar: 2.1.3 Redirection: 2.3.4 Search Unleashed: 1.0.6 SendPress Newsletters: 0.9.9.3 SimplePie Core: 1.1.1 SimplePie Plugin for WordPress: 2.2.1 Sponsor Rotator: 1.1 Stealth Login Page: 3.0.0 Wordfence Security: 4.0.3 WP-PageNavi: 2.85 CURRENT THEME: [REDACTED] --- Custom Theme ### End System Info ###
Forum: Plugins
In reply to: [SendPress Newsletters] Errors Appearing in LogThank you for your reply. The missing argument PHP warnings are no longer appearing in the account’s error log.
In order to get the downloaded iCalendar times correct, I made the following changes as a workaround.
.\my-calendar-export.php
Line 41
REPLACE DTSTAMP:{ical_start}
WITH DTSTAMP:{dtstart}Line 43
REPLACE DTSTART:{ical_start}
WITH DTSTART:{dtstart}Line 44
REPLACE DTEND:{ical_end}
WITH DTEND:{dtend}.\my-calendar-ical.php
Line 13
REPLACE DTSTAMP:{ical_start}
WITH DTSTAMP:{dtstart}Line 15
REPLACE DTSTART:{ical_start}
WITH DTSTART:{dtstart}Line 16
REPLACE DTEND:{ical_end}
WITH DTEND:{dtend}I just noticed the same behavior. You can observe the time differential in the array included at the start of the ICS file.
[ical_start] => 20121110T110000
[ical_end] => 20121110T190000
[dtstart] => 2012-11-10T07:00:00
[dtend] => 2012-11-10T15:00:00WordPress is set to “New York” which is currently GMT-4. For whatever reason, “ical_start” and “ical_end” are using GMT with no offset for time zone while “dtstart” and “dtend” are correct.
For what it’s worth, a similar differential appears in the ICS file downloadable from the sample calendar.
[ical_start] => 20101204T140000
[ical_end] => 20101204T050000
[dtstart] => 2010-12-04T09:00:00
[dtend] => 2010-12-04T00:00:13