does anyone know where to get an event calender for 2.09e that i can add events and edit to show future events ... thanks guys
I have not used it yet, but have you tried the one in 2.09e?
yes fire i did ... its just a calender though ... cant add events and such to it
Sure you can m8, do it in the admin section. Are you looking for one that anyone can add things to, admin or not?
The ECalendar that comes with the CMS is an Event Calendar. The E in its name stands for "Event". :P
I wrote the ECalendar that replaced that older system. I talk about it in this video i did.
I wrote the ECalendar that replaced that older system. I talk about it in this video i did.
That is happening because in your PHP, it was not compiled with that function activated. Here is a workaround.
Open up the block-ECalendar.php
Find on line 27:
Replace with:
You will also need to do the same edits in the file public_html/modules/ECalendar/index.php.
This should be updated in the next release.
Open up the block-ECalendar.php
Find on line 27:
PHP: [ Select all ]
$num_days = cal_days_in_month(CAL_GREGORIAN, $month, $year);
Replace with:
PHP: [ Select all ]
$num_days = round((mktime(0,0,0,$month+1,1,$year) - mktime(0,0,0,$month,1,$year))/86400);
You will also need to do the same edits in the file public_html/modules/ECalendar/index.php.
This should be updated in the next release.
Thank you coRpSE that did the trick
Did you do both file edits? Look at the bottom of the previous post and look at the text in yellow. I had put that in yellow to get your attention.