Page 3 of 3

Posted: Sat 24. Jan 2004, 18:44
by Bijan Hemati
Thank you DeXXus,

Still not working. I'm missing something. But I won't give up. :wink:

Bijan

Posted: Tue 3. Feb 2004, 17:11
by Bijan Hemati
I found a couple of good php calendar scripts:
jcal http://www.prescientsoftware.com/jcal/
and easycalendar http://software.stoitsov.com/free/descr ... syCalendar .
I'm using jcal in a iframe inside phpwcms and it works great. http://www.carltonsclass.us/index.php?id=14,0,0,1,0,0

Thank you DeXXus for your help! :D

Posted: Thu 5. Feb 2004, 01:13
by Pappnase
hello all!

i found a nice eventcalender on http://www.dingsmedia.com
at the moment its only in german! but looks very nice! also it's really an eventcalender where you can also tell what the event costs.

quite funny is that yiu can choose between USD and EUR but the language is only german :wink:

Pappnase

Posted: Thu 5. Feb 2004, 01:26
by marco
Pappnase wrote:hello all!

i found a nice eventcalender on http://www.dingsmedia.com
at the moment its only in german! but looks very nice! also it's really an eventcalender where you can also tell what the event costs.

quite funny is that yiu can choose between USD and EUR but the language is only german :wink:

Pappnase
If they have one, it is well hidden, 'cause I could not find it. Is there a direct link to it to avoid having to search the entire site?

Posted: Thu 5. Feb 2004, 01:31
by Pappnase
marco wrote:
Pappnase wrote:hello all!

i found a nice eventcalender on http://www.dingsmedia.com
at the moment its only in german! but looks very nice! also it's really an eventcalender where you can also tell what the event costs.

quite funny is that yiu can choose between USD and EUR but the language is only german :wink:

Pappnase
If they have one, it is well hidden, 'cause I could not find it. Is there a direct link to it to avoid having to search the entire site?
ups yes sorry

here is the link!

http://www.dot96.de/hosting/dingsmedia/ ... o_v1_1.exe

you need in the common.php file serveral changes!

Code: Select all

define("ServerURL", "http://localhost/eventmaster/"); 

$this->DBDatabase = "Database"; 
$this->DBHost = "localhost"; 
$this->DBUser = "root"; 
$this->DBPassword = "root"; 
then it should be run!

Pappnase

Posted: Thu 5. Feb 2004, 01:50
by marco
Pappnase wrote: here is the link!

Pappnase
Thank you!

Including external PHP Event Calendar...

Posted: Wed 25. Feb 2004, 03:54
by tyr
Bijan Hemati wrote:I have found a php events calendar program at http://www.softcomplex.com/products/php_event_calendar/ .
I have installed it on localhost and created a calendar, and I am able to view it in an html page outside of phpwcms. Here are the codes in html file.

Code: Select all

 (<?
include 'cl_files/calendar.php';
?>
<html>
<head>
</head>
<body>
<?
show_calendar(cc);
?>
</body>
</html>)

But when I try to include this external page inside a template in phpwcms, as a external file, (using this command "{PHP:TestCal.html}"), I get these errors.

Warning: include_ext_php(TestCal.html): failed to open stream: No such file or directory in c:\appserv\www\wcms\include\inc_front\front.func.inc.php on line 855

Warning: include_ext_php(): Failed opening 'TestCal.html' for inclusion (include_path='.;c:\php4\pear') in c:\appserv\www\wcms\include\inc_front\front.func.inc.php on line 855

Any idea?

Regards,
Bijan
I use the php event calendar in my static Web pages. The first php include statement

Code: Select all

 <? include 'cl_files/calendar.php'; ?>
must appear BEFORE the opening <HTML> tag. In order to do that in phpWCMS you would have to add the php call to the include file in the phpWCMS template that writes the code before your phpWCMS template.

I'm not sure which WCMS file that is...or if I even want to do that, since I'm not proficient with programming. For now, I will just link to a static page outside WCMS that mirrors the layout/template.

Posted: Wed 25. Feb 2004, 05:09
by Bijan Hemati
Thnks for the info tyr,

I quit messing around with that script.
Although I have found couple of other events calendars and integrated them into phpWCMS and they look great together!

One is a simple events calendar that automatically links the events posted to each day on the calendar. It is called jcal http://www.prescientsoftware.com/jcal/ .

The other one is an events calendar that works like a blog/forum and many users can register and post news or events. Each post then is automatically linked into a calendar. The backend control panel is very easy to configure. It is called pMachine http://www.pmachine.com

Bijan