ents
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Widget Gallery Thumbnail ProblemID 1: A failure occurred
[more]
[object JSXMLHttpRequest]
ID 2: A failure occurred
[more]
[object JSXMLHttpRequest]
ID 3: A failure occurred
[more]
[object JSXMLHttpRequest]
ID 4: A failure occurred
[more]
[object JSXMLHttpRequest]
ID 5: A failure occurred
[more]
[object JSXMLHttpRequest]
ID 6: A failure occurred
[more]
[object JSXMLHttpRequest]
ID 7: A failure occurred
[more]
[object JSXMLHttpRequest]
ID 8: A failure occurred
[more]
[object JSXMLHttpRequest]
ID 10: A failure occurred
[more]
[object JSXMLHttpRequest]
ID 12: A failure occurred
[more]
[object JSXMLHttpRequest]9 and 11 worked…
Forum: Plugins
In reply to: [Plugin: ICS Calendar] Events do not show proper GMT datesHow to fix this:
Site admin>plugins>plugin editor>ics calendar> ics-importer.phpadd “putenv(“TZ=America/New_York”);” right after the FIRST */
for example mine is
<?php
/*
Plugin Name: ICS Calendar
Version: v1.1.8
Author: Daniel Olfelt
Description: A plugin for importing ICS files from Google or iCal into a blog page as an event list or calendar.
*/putenv(“TZ=America/New_York”);
ini_set(‘display_errors’, 1); // FOR DEBUGING ONLY
require_once(‘import_ical.php’);
//require_once(‘ical_parse.php’);
require_once(‘ics-functions.php’);
require_once(‘cal-functions.php’);find your time zone here
http://www.theprojects.org/dev/zone.txt
yup that’s it and is super stupid that time zone is not a built in option. bye.