A number of people have asked for a list of upcoming events that does not use the monthly calendar, and here it is!
There are also a few bug fixes as described below.
From the Change log:
Fixed a bug that prevented region filtering with embedded blanks from working properly (thanks Patrick!).
Added a new paged view for events (not month specific) that allows adding/removing events to a calendar with one click.
Fixed some issues with the personal event calendar widget.
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by RaĆ¼l Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
Trajan, I've already responded to this issue above and asked a question (which received no response).
I can't reproduce the problem myself and I'll need more information to help.
Did you receive my MP with m'y phpinfo()?
Yep spotted that Kevin. Hope this is what you are looking for:
Server: Linux CentOS
Program Version Apache: 2.2.15 CentOS: . cPanel: 11.25.0-RELEASE Curl: 7.12.1 MySQL 5.1.47 phpMyAdmin 3.2.4 Python: 2.4.3 Perl: 5.8.8 PHP: 5.2.4 ionCube Loader: 3.3.14 Zend Optimizer: 3.3.9 Ruby: 1.8.7 Rails: 2.3.5 OpenSSL: 0.9.8e-fips-rhel5
Elgg 1.7.1
Do you need other things?
Trajan, my question was:
What locale are you running under?
It looks like strtotime is not working on your server.
@Trajan
Run this code to see what the server's "locale" / timezone is -->
<?php
echo"<hr><pre>";
if (date_default_timezone_get()) {
echo "\ndate_default_timezone_set: \n " . date_default_timezone_get() . "\n";
}
echo"</pre><hr>";
?>
Chengdu seems not listed as an allowed locale..
The nearest I see is "Asia/Phnom_Penh"
Try this
<?php
$tz = new DateTimeZone("America/New_York"); // testing..
print_r($tz->getLocation());
$tz = new DateTimeZone("Asia/Phnom_Penh"); // more real ;-)
print_r($tz->getLocation());
?>
date_default_timezone_set: America/Chicago
So.. your server is located in Chicago/USA...;-O
I did some more research re: China's TimeZones. a little bit strange system they have had there.
I believe most of China operates on GMT+8.
lol All of China is 1 timezone. Stupid concept. How is that important though?
- Previous
- 1
- 2
- 3
- 4
- 5
- Next
You must log in to post replies.