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

Bijan
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 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![]()
Pappnase
ups yes sorrymarco wrote: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 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![]()
Pappnase
Code: Select all
define("ServerURL", "http://localhost/eventmaster/");
$this->DBDatabase = "Database";
$this->DBHost = "localhost";
$this->DBUser = "root";
$this->DBPassword = "root";
I use the php event calendar in my static Web pages. The first php include statementBijan 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
Code: Select all
<? include 'cl_files/calendar.php'; ?>