So I was getting "It is not safe to rely on the system’s timezone settings. Please use the date.timezone setting, the TZ environment variable or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected ’America/New_York’ for ’EDT/-4.0/DST’ instead"
Then I was kindly directed to this board and changed my GoogleEvents snippet (in ModX) to:
<?php
// Resource Name: GoogleEvents
// Author: Jesse Rochman
// Forum Alias: Jesse R.
// Version: 1.4.2
// Compatible with .961
// Released: 1/9/2007
// Modified: 3/1/2007 by KyleJ
// Modified: 3/2/2007 by Jesse
//Modified: 11/19/2007 by Jesse
//Modified: 1/9/2008 by Jesse
// Inspired by James Cridlands Google Calendar Code
//Calendar Class is from Giorgos Tsiledakis Active Calendar
date_default_timezone_set('America/New_York');
$basePath = $modx->config['base_path'];
$siteURL = $modx->config['site_url'];
Now I get the system event/error "Assigning the return value of new by reference is deprecated" - What did I do wrong? (or do you need to see more of the code?