I need help refining my Calendar

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
Bijan Hemati
Posts: 191
Joined: Sun 9. Nov 2003, 00:18
Location: Austin, TX

Post by Bijan Hemati »

Thank you DeXXus,

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

Bijan
Bijan Hemati
Posts: 191
Joined: Sun 9. Nov 2003, 00:18
Location: Austin, TX

Post 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
Pappnase

Post 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
marco

Post 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?
Pappnase

Post 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
marco

Post by marco »

Pappnase wrote: here is the link!

Pappnase
Thank you!
tyr
Posts: 31
Joined: Tue 9. Dec 2003, 04:36
Location: Pennsylvania, USA

Including external PHP Event Calendar...

Post 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.
Bijan Hemati
Posts: 191
Joined: Sun 9. Nov 2003, 00:18
Location: Austin, TX

Post 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
Post Reply