i may have found a solution to the big calendar date issue:
in cal.php, change this code:
<?php if( !isset( $_REQUEST["year"] ) ) {
$year = date("Y");
} else {
$year = $_REQUEST["year"];
if( $month == 0 ) {
$year = ($year - 1);
}
if( $month == 13 ) {
$year = ($year + 1);
}
}
if( !isset( $_REQUEST["month"] ) ) {
$month = date("n");
} else {
$month = $_REQUEST["month"];
if( $month == 0 ) {
$month = 12;
}
if( $month == 13 ) {
$month = 1;
}
}
to this:
<?php if( !isset( $_REQUEST["month"] ) ) {
$month = date("n");
} else {
$month = $_REQUEST["month"];
}
if( !isset( $_REQUEST["year"] ) ) {
$year = date("Y");
} else {
$year = $_REQUEST["year"];
if( $month == 0 ) {
$year = ($year - 1);
}
if( $month == 13 ) {
$year = ($year + 1);
}
if( $month == 0 ) {
$month = 12;
}
if( $month == 13 ) {
$month = 1;
}
}
i'm not a programmer, but the above modification is working on my site. Here is my info:
PHP built On: Linux peleus.site5.com 2.6.18-1-s5 #1 SMP Tue Oct 10 21:34:59 EDT 2006 i686
Database Version: 4.1.21-standard-log
PHP Version: 4.4.4
Web Server: Apache/1.3.37 (Unix) mod_fastcgi/2.4.2 mod_gzip/1.3.26.1a mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635.SR1.2 mod_ssl/2.8.28 OpenSSL/0.9.7a PHP-CGI/0.1b
WebServer to PHP interface: cgi
Joomla! Version: Joomla! 1.0.12 Stable [ Sunfire ] 25 December 2006 01:00 UTC
User Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.9) Gecko/20061206 Firefox/1.5.0.9
Relevant PHP Settings:
Joomla! Register Globals Emulation: OFF
Register Globals: OFF
Magic Quotes: ON
Safe Mode: OFF
File Uploads: ON
Session auto start: OFF
Session save path: /tmp
Short Open Tags: ON
Output Buffering: OFF
Open basedir: none
Display Errors: ON
XML enabled: Yes
Zlib enabled: Yes
Disabled Functions: none