dlocher
06-20-2006, 02:38 PM
OK, I was about to hijack somebody else’s thread (http://www.easyphpcalendar.com/forums/showthread.php?t=4229), but I figured it would be easier to start a new one. (It get’s so confusing jumping around threads).
I am running the following:
Website (not live yet): www.gracelandbaptistchurch.org (http://www.gracelandbaptistchurch.org)
PHP 4.4.2
MySQL 4.1.19 Standard
PHPNuke v 7.9
Easy PHP Cal 6.3.21
Install folder of calendar: gracelandchurch.org/calendar
Install of PHPNuke: default
If it's important, I am running Autotheme on the site.
Quoting ve9gra from (http://www.easyphpcalendar.com/forums/showthread.php?t=4229):
1- Install the EPC package to /*your-php-nuke-root*/calendar/
2- upload block-Calendar.php to /*nuke-root*/blocks/
3- upload Calendar module folder to /*nuke-root*/modules/
4a- (for PHP-Nuke version 7.5) find /*nuke-root*/includes/my_header.php and add towards the bottom
Question 1: Line 3, what exactly is the calendar module folder?
Question 2: I have created the block, the problem with that is I just want a 7 day list to show, not the whole month. Perhaps 7 days in blog style. Problem is, I can't get it to stop showing the month. I edited block-calendar.php, but I can't seem to change it. Here is my block-calendar.php:
START_____________________________________
<?php
if (eregi("block-Calendar.php", $_SERVER['PHP_SELF'])) {
Header("Location: index.php");
die();
}
ob_start();
$OL=1; require ("calendar/calendar.php"); //required if you're going to use overLib
require ("calendar/calendar.php"); //the line that shows the calendar
// What's following is the section required for the listing
// Uncomment if you want the listing to appear.
// You will have to modify the escal/templates/monthly.php file accordingly
// so that it fits in your site.
$LIST=1;
$listWeeks=1;
$DF = "D - M d";
$template="blog.php"; //just specify the name of the template - no path!
//require ("calendar/calendar.php"); //display the list of events
$content = ob_get_clean();
?>
END______________________________________
Question 3: I would like something in my week view (block on left) to open the full-blown calendar as a module (trying to follow directions above).
Any help would be appreciated, I apologize for making this a new thread, I am sure the answers I need are in many other posts.
Feel free to email me if you'd like: david@dashcorptech.com
I am running the following:
Website (not live yet): www.gracelandbaptistchurch.org (http://www.gracelandbaptistchurch.org)
PHP 4.4.2
MySQL 4.1.19 Standard
PHPNuke v 7.9
Easy PHP Cal 6.3.21
Install folder of calendar: gracelandchurch.org/calendar
Install of PHPNuke: default
If it's important, I am running Autotheme on the site.
Quoting ve9gra from (http://www.easyphpcalendar.com/forums/showthread.php?t=4229):
1- Install the EPC package to /*your-php-nuke-root*/calendar/
2- upload block-Calendar.php to /*nuke-root*/blocks/
3- upload Calendar module folder to /*nuke-root*/modules/
4a- (for PHP-Nuke version 7.5) find /*nuke-root*/includes/my_header.php and add towards the bottom
Question 1: Line 3, what exactly is the calendar module folder?
Question 2: I have created the block, the problem with that is I just want a 7 day list to show, not the whole month. Perhaps 7 days in blog style. Problem is, I can't get it to stop showing the month. I edited block-calendar.php, but I can't seem to change it. Here is my block-calendar.php:
START_____________________________________
<?php
if (eregi("block-Calendar.php", $_SERVER['PHP_SELF'])) {
Header("Location: index.php");
die();
}
ob_start();
$OL=1; require ("calendar/calendar.php"); //required if you're going to use overLib
require ("calendar/calendar.php"); //the line that shows the calendar
// What's following is the section required for the listing
// Uncomment if you want the listing to appear.
// You will have to modify the escal/templates/monthly.php file accordingly
// so that it fits in your site.
$LIST=1;
$listWeeks=1;
$DF = "D - M d";
$template="blog.php"; //just specify the name of the template - no path!
//require ("calendar/calendar.php"); //display the list of events
$content = ob_get_clean();
?>
END______________________________________
Question 3: I would like something in my week view (block on left) to open the full-blown calendar as a module (trying to follow directions above).
Any help would be appreciated, I apologize for making this a new thread, I am sure the answers I need are in many other posts.
Feel free to email me if you'd like: david@dashcorptech.com