Welcome, Guest. Please login or register.
Did you miss your activation email?
February 12, 2012, 05:56:49 PM

Login with username, password and session length
Search:     Advanced search
Wollen Sie dem WebsiteBaker Team beitreten?
Nähere Informationen finden Sie unter hier und auf unserer neuen Webseite.
149667 Posts in 21100 Topics by 7538 Members
Latest Member: ionline
* Home Help Search Login Register
Pages: 1 [2] 3 4 5   Go Down
Print
Author Topic: Yet another event calendar  (Read 41506 times)
treasurer

Offline Offline

Posts: 5


« Reply #25 on: September 28, 2006, 09:44:21 AM »

I think it is great. Would like some more functionality - bold type, type face colour etc - but as I know nothing about any of this I am pleased simply to be able to use a module someone else has spent considerable time creating.
I am using it at www.footballwidebay .org

Treasurer.
Logged
keijok

Offline Offline

Posts: 17


« Reply #26 on: October 02, 2006, 06:37:34 AM »

...bold type, type face colour etc...

You can actually use standard HTML codes to format the text. Here's an example, event at October 10 2006.

But I do agree that writing those HTML markers can be a bit tidious. What is needed is perhaps integrated WYSIWYG editor to enter the event description. I'll have to see about this, don't have the time just now, tough.
Logged
Tzvook

Offline Offline

Posts: 24


« Reply #27 on: October 16, 2006, 09:18:59 AM »

I get this:

Fatal error: Cannot instantiate non-existent class: template in /aaa/www/modules/event_calendar/view.php on line 67

on the public site...
is there any idea ?
Logged
keijok

Offline Offline

Posts: 17


« Reply #28 on: October 18, 2006, 05:45:31 AM »

I get this:

Fatal error: Cannot instantiate non-existent class: template in /aaa/www/modules/event_calendar/view.php on line 67

on the public site...
is there any idea ?

Do you have the template.inc library file in the include/phplib folder of your wb installation?
Logged
Tzvook

Offline Offline

Posts: 24


« Reply #29 on: October 19, 2006, 07:58:45 AM »

Do you have the template.inc library file in the include/phplib folder of your wb installation?

Yep I do ...  first thing was going to the error line to see... and then to phplib.
I'm using version 2.6.0 on Apache + Suse.

UPDATE:
just tested in on FREEBSD , same errors, it seems it works only with higher version and info.php need not say it works with 2.6.x ... maybe I only need to update the phplib ? and stay with 2.6.0 ?
« Last Edit: October 19, 2006, 08:17:18 AM by Tzvook » Logged
kweitzel
Forum administrator
*****
Offline Offline

Posts: 6820


WWW
« Reply #30 on: October 19, 2006, 08:29:19 AM »

the info(.)php of modules defines the WebsiteBaker version, this module is defined for, nothing else.

cheers

Klaus
Logged

WebsiteBaker Org e.V. - for WebsiteBaker

ruebenwurzel
WebsiteBaker Org e.V.

Offline Offline

Posts: 7663



WWW
« Reply #31 on: October 19, 2006, 10:59:01 AM »

Hello Tzvook,

why you don't wanna update to WB 2.6.4?

Matthias

Logged
keijok

Offline Offline

Posts: 17


« Reply #32 on: October 20, 2006, 05:19:45 AM »

UPDATE:
just tested in on FREEBSD , same errors, it seems it works only with higher version and info.php need not say it works with 2.6.x ... maybe I only need to update the phplib ? and stay with 2.6.0 ?
I made the calendar using WB2.6.4.
Haven't got any older version so no idea why it doesn't work on those.
Logged
Tzvook

Offline Offline

Posts: 24


« Reply #33 on: October 20, 2006, 08:56:29 AM »

Hello Tzvook,

why you don't wanna update to WB 2.6.4?

Matthias



Ohh, well I used so many core hacks (functionality + visibility) that I'll have to do it all from the begining .... there's already no hair anyway on my head smiley
Next time I'll do it will probably be for a higher version ...

If there was a changes log of touched files between versions ... all was easyer ... or maybe there is one and I missed it ?
« Last Edit: October 20, 2006, 08:59:05 AM by Tzvook » Logged
ruebenwurzel
WebsiteBaker Org e.V.

Offline Offline

Posts: 7663



WWW
« Reply #34 on: October 20, 2006, 10:28:29 AM »

Hello

Quote
Ohh, well I used so many core hacks (functionality + visibility)

So don't wonder if you get problems with modules wich needs standard core files.  wink  wink

Quote
If there was a changes log of touched files between versions

Somewhere here in the forum i posted a package with only the changed files from 2.6.3 to 2.6.4. Search for it (i will do it too if i get some time), maybe this helps you to make upgrade your "user defined" version easier.

Matthias
Logged
chetvictor

Offline Offline

Posts: 2


« Reply #35 on: November 28, 2006, 05:55:26 AM »

Yes i created a page with Event Calendar as page type and added an event and made it viewable by the public and All I get is a blank page that says the Title at the top.
That's odd  huh

Can you see any error messages in the webserver log?
If so, could you please paste the error here so I can take a look...

This is because in the event.class.php file it declares var $type = ''; Twice

Delete line 26 in the event.class.php and the calendar will show.

Chet
« Last Edit: November 28, 2006, 05:57:03 AM by chetvictor » Logged
marathoner

Offline Offline

Posts: 495


« Reply #36 on: December 15, 2006, 09:50:49 PM »

I love this module and have made some changes. One thing that some other folks may want to take advantage of is to be able to put a small calendar on any page (as opposed to coding it into the template as mentioned earlier). I simply created a function called small_cal() and then call this from a code section on a page. Here is the function:

function small_cal() {
   global $database;
   require_once( WB_PATH.'/modules/event_calendar/calendar.class.original.php' );
   $cal = new Calendar( $database, 'menu' );
   echo "".$cal->writeCalendar();
}

Note that the code is exactly the same as that used in the template but that it also has to include the global variable $database.

If you want to see my function in action, check out:
http://www.secondsoletotalsports.com

Hope someone out there can use this.
« Last Edit: December 16, 2006, 02:58:49 AM by marathoner » Logged
DGEC

Offline Offline

Posts: 386


WWW
« Reply #37 on: January 30, 2007, 09:28:32 PM »

advantage of is to be able to put a small calendar on any page (as opposed to coding it into the template as mentioned earlier). I simply created a function called small_cal() and then call this from a code section on a page. Here is the function:
   ...
Note that the code is exactly the same as that used in the template but that it also has to include the global variable $database.

Just wanted to check - is this safe to use on "multi-oven" sites? (one code installation, multiple sites)

I'm not sure if the $database variable includes (or is) the database's site prefix.
Logged
useeme2ce

Offline Offline

Posts: 6


« Reply #38 on: April 25, 2007, 04:53:45 PM »

I use this one. It works...

But the Date is wrong. It starts with: Monday, 1st April. Not with Sunday, 1st April.

Any idea how to fix this?

By the way - are there any workarounds for the normal event calender, to show a small calender in the navigation? That was the only reason, why I used this special event calender...
Logged
marathoner

Offline Offline

Posts: 495


« Reply #39 on: April 27, 2007, 07:31:12 PM »

Quote
By the way - are there any workarounds for the normal event calender, to show a small calender in the navigation? That was the only reason, why I used this special event calender...

Regarding the wrong days...I don't know why the calendar would have the days wrong. Do other date functions work correctly on your system? Just a thought...it may be a PHP configuration issue.

Regarding the small calendar...as I mentioned above, you can either implement the small calendar code into your template or create a small function that you can call from a code section of a specific page. Both the full calendar and the small calendar are CSS based so you can make it as big or small as you want. See my site as an example:
www.secondsoletotal sports.com
Logged
martinstan1

Offline Offline

Posts: 27


« Reply #40 on: April 30, 2007, 05:30:31 PM »

Hi
I've been following the ongoing development of this module and it looks great! Is there a definitive version yet? Would love to get this installed.
Thanks
martin
Logged
useeme2ce

Offline Offline

Posts: 6


« Reply #41 on: May 08, 2007, 02:41:56 PM »

Ah, the error was my mistake - I mixed up the Sunday-Monday as fist Day, and that was why smiley

Now it works like a charm. But another little issue:
If I use "umlaute" in German - It works in Firefox, but Internetexplorer gives me that:

"Erlöserkirche Gemeindegottesdiens t"

Do I have to change the codec to UFT-8 ? How can I do this... WebsiteBaker is using UTF-8 already.
Logged
monster

Offline Offline

Posts: 2


« Reply #42 on: May 12, 2007, 01:32:38 AM »

Hi, thanks for all your hardwork everyone.  Maybe one day I can help out when poor little brain can absorb all that is going on. 

After looking through this thread, I definitely want this event calendar but I don't know where to start, is the "current" version with all the changes mentioned in the completed modules section?  If not, where do I start?

Thanks!
Logged
glogo

Offline Offline

Posts: 22


« Reply #43 on: June 23, 2007, 02:00:30 PM »

hello everyone,

where can I find this module? the download link seems to be broken and  I don't see it in the repository.

The calendar on http://www.secondsoletotalsports.com/ looks great and is actually what I would like to have for my client's site. It does seem eerily similar to the phpEventCalendar found at that riversidebaptistchu rch.ca site.

Greetings
glogo
Logged
doc
Guest
« Reply #44 on: June 23, 2007, 04:38:08 PM »

Hello,

seems the developer of the module is using Joomla now. Maybe contact him via http://keijok.kapsi.fi/ and ask if he could send you the latest version so we could devlop it furhter.

Regards Christian
Logged
dihakz

Offline Offline

Posts: 23


« Reply #45 on: June 23, 2007, 05:14:29 PM »

seems the developer of the module is using Joomla now. Maybe contact him via http://keijok.kapsi.fi/ and ask if he could send you the latest version so we could devlop it furhter.

I saw that .. Sad

Is this a growing trend?  Are we losing a lot to other platforms, or is WB growing?
Logged
glogo

Offline Offline

Posts: 22


« Reply #46 on: June 23, 2007, 06:09:29 PM »

Hi,

@Christian

as far as I know (only know about 3 words in finnish), I have sent the developer a message over his contact page. we will see if he answers. that cal mod really looked pretty good. so, I am eager to try it out. In the meantime, I loaded the phpEventCal with the list mod function. It's working, but, well, it just isn't really that "cool". It's VERY basic.

Greetings
glogo
Logged
marathoner

Offline Offline

Posts: 495


« Reply #47 on: June 25, 2007, 11:11:02 PM »

@glogo
Here is what I had downloaded for what I started with at www.secondsoletotal sports.com. I hacked up the code to do a few things different (mainly related to CSS and admininistration) and I also put together a function to call from a code section (see elsewhere in this thread).

@doc
Could you or one of the other's please post this to the module repository?

Update: attachment deleted
« Last Edit: June 27, 2007, 01:45:37 AM by marathoner » Logged
ruebenwurzel
WebsiteBaker Org e.V.

Offline Offline

Posts: 7663



WWW
« Reply #48 on: June 26, 2007, 05:32:52 AM »

@marathoner

the version you posted in your thread above is exactly the same as on the addons repository. There is already the version 1.7.4. Nothing needs to be replaced.

So can you please delete the version from your post above (this may confuse our users as they aspect new functions wich are not included) and add your adapted version? Befor releasing it as official the community an we have to test it.

thanks

Matthias
Logged
keijok

Offline Offline

Posts: 17


« Reply #49 on: June 27, 2007, 06:23:52 AM »

Hello everyone!

Unfortunately I do not have time to develop this calendar module anymore.
Marathoner have made some great additions to my code so maybe Marathoner could make his modifications available somewhere. Latest version I've made can be found at http://keijok.kapsi.fi/tmp/websitebaker_modules/
Feel free to donload and use as a base for further development if found usable. I see someone have already made quite large modifications to the Ban module so use that instead of my version found from the URL above.

I developed both these modules originally last year for a certain society and at that time WB was a very strong contender for the CMS of the society. But, unfortunately for WB, the society decided to go with Joomla instead and I feel I don't have time to keep up with two CMS's right now. We'll keep WB in mind and when WB3 is out, we'll take a good look into it.

Regards,
Keijo K.
Logged
Pages: 1 [2] 3 4 5   Go Up
Print
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.16 | SMF © 2011, Simple Machines Valid XHTML 1.0! Valid CSS!