Calendar MOD on Windows Box Problem

If you've problems with unsupported - non official ;-) - functionalities use this forum please.
Post Reply
trip
Posts: 657
Joined: Tue 17. Feb 2004, 09:56
Location: Cape Town, South Africa
Contact:

Calendar MOD on Windows Box Problem

Post by trip »

Hi all
i have successfully installed the calendar mod on DEV1.2.1... latest release from IONROCK...

I have the following error thoughj when I add an event.

Code: Select all

Warning: strtotime() [function.strtotime]: Called with an empty time parameter. in C:\Domains\xxxxx\wwwroot\include\inc_module\mod_calendar\inc_lib\main.functions.php on line 79

Warning: date() [function.date]: Windows does not support dates prior to midnight (00:00:00), January 1, 1970 in C:\Domains\xxxxx\wwwroot\include\inc_module\mod_calendar\inc_lib\main.functions.php on line 79
This is the code part giving a problem

Code: Select all

$month = date('n', strtotime($month));
on lines 79, 95 and 111
can any one suggest an alternative to sort this out as windows does not like this.

thanks in advance
TriP
Lenni
Posts: 3
Joined: Wed 29. Jun 2005, 15:58

Post by Lenni »

Hi Trip.

You are not alone...
I have exactly the same problems.
Is anybody out there able to help.

Thanx. Lenni
trip
Posts: 657
Joined: Tue 17. Feb 2004, 09:56
Location: Cape Town, South Africa
Contact:

Post by trip »

Still no solution in site....
Duke25
Posts: 7
Joined: Thu 29. Sep 2005, 16:06
Location: Stuttgart
Contact:

same in here

Post by Duke25 »

Hey guys,

same problem up in here. Any suggestions???

Thx for further informations...

Greez
User avatar
pico
Posts: 2595
Joined: Wed 28. Jul 2004, 18:04
Location: Frankfurt/M Germany
Contact:

Post by pico »

Hi

me too :(

after changing the 3 Lines with

Code: Select all

$month = date('n', strtotime($month));
$year = date('n', strtotime($year));
$day = date('n', strtotime($day));
to

Code: Select all

$XXXXX = date('Y', strtotime("now"));
it works for me - seems that it has something to do with PHP 5 !?
Lieber Gott gib mir Geduld - ABER BEEIL DICH
Horst - find me at Musiker-Board
Post Reply