An Event Calendar Mod
Update to 1.2.8
If I update my phpwcms installation from 1.2.5 to 1.2.8 must I reinstall the calender mod?
---
Wenn ich mein phpwcms von 1.2.5 nach 1.2.8 update muss ich den calender-mod neu einbinden?
Thx.
---
Wenn ich mein phpwcms von 1.2.5 nach 1.2.8 update muss ich den calender-mod neu einbinden?
Thx.
How can I get the Calendar Mod to work for 1.2.8??
Hi,
I am running a brand new installation of 1.2.8 - I have become a little confused as to how I can get the Calendar mod installed and working on 1.2.8...
What do I need to install? The multiple versions of Ionrock?
Please help if you can, I'd really like to get this on my site!
Thanks in advance!
I am running a brand new installation of 1.2.8 - I have become a little confused as to how I can get the Calendar mod installed and working on 1.2.8...
What do I need to install? The multiple versions of Ionrock?
Please help if you can, I'd really like to get this on my site!
Thanks in advance!
Important information for all people who can see the module-link but when they click on, just nothing happens:
when you change / add the lines in the phpwcms.php it's necessary to put the "default"-lines of coding at the end of the cases lines. If you don't you'll only see the default-message! here an example of an correct code:
greetz Monz@
when you change / add the lines in the phpwcms.php it's necessary to put the "default"-lines of coding at the end of the cases lines. If you don't you'll only see the default-message! here an example of an correct code:
Code: Select all
case "modules": //Modules
switch ($p) {
case 2: // Graphical Text MOD
if($phpwcms["gt_mod"]) { //enabled/disable GT MOD
include_once("include/inc_module/mod_graphical_text/main.inc.php");
}
break;
case 3: // Calendar Mod
if ($phpwcms["calendar_mod"]) { //enabled/disable calendar mod
include_once("./include/inc_module/mod_calendar/main.inc.php");
}
break;
case 5: //Gallery Mod
if ($phpwcms["gallery_mod"]) {
include_once("./include/inc_module/mygallery/main.inc.php");
}
break;
default: echo 'Thanks to Jérôme for his <a href="phpwcms.php?do=modules&p=2">Graphical Text MOD</a>.';
echo '<br> <br>Other modules might follow. GT MOD will be moved to admin section.';
}
break;
-
- Posts: 32
- Joined: Mon 27. Mar 2006, 21:43
Re: It dosn't work...
ist bei mia auch der fall..TGO wrote:Hello! Maybe it's not to boring all the time this damn rookie questions, but I can't find the mistake...
I use phpwcms v1.2.3-DEV and the calendar_mod_v2.01_ionrock. I install all files and added everything, but when I will install the calendar, I only get this:
I can't find the mistake. I do all steps exactly like in the manual from calendar_mod_v2.01_ionrock.Error creating the events table: Query was empty
Maybe someone knows, where is the mistake!
Thank you!
meine phpwcms.php :
und weiter unten...case "modules": //modules
$wcsnav["modules"] = "".$wcsnav["modules"]."";
if($phpwcms["gt_mod"]) { //enabled/disable GT MOD
$subnav .= subnavtext($BL['be_subnav_graphicaltext_mod'], "phpwcms.php?do=modules&p=2", $p, "2", 0);
}
// you take this line and add it to your /include/inc_conf/conf.inc.php file
$phpwcms["calendar_mod"] = 1; // enable calendar mod = 1, disable = 0
if ($phpwcms["calendar_mod"]) { // enabled/disable Calendar Module
$subnav .= subnavtext("Calendar Module", "phpwcms.php?do=modules&p=3", $p, "3", 0);
}
break;
und die main.config.phpcase "modules": //Modules
switch ($p) {
case 2: // Graphical Text MOD
if($phpwcms["gt_mod"]) { //enabled/disable GT MOD
include_once("include/inc_module/mod_graphical_text/main.inc.php");
}
break;
default: echo 'Thanks to Jérôme for his <a href="phpwcms.php?do=modules&p=2">Graphical Text MOD</a>.';
echo '<br> <br>Other modules might follow. GT MOD will be moved to admin section.';
case 3: // Calendar Mod
if ($phpwcms["calendar_mod"]) { //enabled/disable calendar mod
include_once("./include/inc_module/mod_calendar/main.inc.php");
}
break;
}
break;
wo steckt der fehler?<?php
// main config for calendar mod
// table names
$prefix = "db_wcms";
$tables['cal_events'] = $prefix . "phpwcms_cm_events";
$tables['cal_categories'] = $prefix . "phpwcms_cm_categories";
$GLOBALS['tables'] = $tables;
?>
Its been quiet for some time now. But i have 2 questions.
1. How do you change the look of the agenda, i can't figger it out. The css is not attached to any template it seems.
For example, how can i use my own buttons to replace with the < > buttons.
2. Is it possible to only show events from one category? (with the replacement tag?) so you can use more agenda's for your site?
1. How do you change the look of the agenda, i can't figger it out. The css is not attached to any template it seems.
For example, how can i use my own buttons to replace with the < > buttons.
2. Is it possible to only show events from one category? (with the replacement tag?) so you can use more agenda's for your site?
Last edited by sp1r on Mon 9. Oct 2006, 13:16, edited 1 time in total.
suche in calendar mod
hallo leute, ist es irgendwie möglich, dass auch die calendar mod einträge bei der suche ausgegeben werden???
DANKE
DANKE
-
- Posts: 10
- Joined: Fri 8. Dec 2006, 11:07
Updated Calendar Installation doc for 1.3.3
http://bishport.com/phpwcmsdev/
I dont know if this exists anywhere else so i added the changes i needed to make granted the tutorial is still mostly Volker's work
thanks again volker
I dont know if this exists anywhere else so i added the changes i needed to make granted the tutorial is still mostly Volker's work
thanks again volker
-
- Posts: 14
- Joined: Wed 17. Oct 2007, 12:30
Ist jetzt hier : http://www.phpwcms.de/forum/viewtopic.php?p=93737#93737