dude
Newbie
Posts: 1
Registered: 7/20/2006
Member Is Offline
|
| posted on 7/20/2006 at 10:19 PM |
|
|
Integration/Missing Files
Hi there,
First, I'd like to thank the authors for making this script available. It looks very nice! That said, I need to let you know of a few issues.
I've installed thousands of scripts, so I know what I am doing. And the install on this script went fine. It was when I went to integrate with my
site that I received these errors:
1) Can't open /home/username/public_html/calendar/cl_files/data/config.php file. Please, check permissions. For more details see Installation
Instructions
I can see why it didn't open--the file DOES NOT exist in my installation. I see a bunch of files that were created in the data folder when I
installed--but config.phpp is not one of them
2) There was also this error:
Fatal error: Call to a member function on a non-object in /home/username/public_html/calendar/cl_files/calendar.php on line 666
Lord knows what that means. All in all, kind of frustrating. I've installed much more complex scripts with no issues.
I know you get what you pay for, but it would be nice if one did not have to troubleshoot a script for so long.
Thanks,
bri
|
|
|
graemejw
Newbie
Posts: 1
Registered: 11/24/2006
Member Is Offline
|
| posted on 11/24/2006 at 07:18 AM |
|
|
I had the same problem, misread the awful installation instructions.
in the code below
<?
$calendar->init($c_num);
$calendar->show_event();
?>
replace $c_num with the name of your calendar and it will work.
Not sure if this is the correct solution yet, but it works for now
|
|
|
noclafder
Junior Member
Posts: 2
Registered: 12/11/2006
Member Is Offline
|
| posted on 12/11/2006 at 12:41 PM |
|
|
Help
The Date is 12/11/2006 - and the problems mentioned above with the script integration continue...does anyone have a solutions?
Thanks,
-Noclafder
|
|
|
noclafder
Junior Member
Posts: 2
Registered: 12/11/2006
Member Is Offline
|
| posted on 12/11/2006 at 01:58 PM |
|
|
| Quote: | Originally posted by graemejw
I had the same problem, misread the awful installation instructions.
in the code below
<?
$calendar->init($c_num);
$calendar->show_event();
?>
replace $c_num with the name of your calendar and it will work.
Not sure if this is the correct solution yet, but it works for now |
OK...for those of you who are still confused after reading the nice post by graemejw...let my break it down...
For
"<?
new calendar(Your_calendar_name);
?>"
this should be changed to
"<?
new calendar('Your_calendar_name');
?>"
...and for...
"<?
$calendar->init($c_num);
$calendar->show_event();
?>"
this should be changed to
"<?
$calendar->init('Your_calendar_name');
$calendar->show_event();
?>"
AGAIN PLEASE BE SURE TO USE THE QUOTES INSIDE THE () because if you do not you will only see garbage
...I spent about an hour jacking around with the code...and I am a pretty decent scripting dude in PHP...well, I guess I am not that great...I should
have figured that one out faster.
...BUT NOW YOU CAN DO IT!!!
|
|
|
HappyFeet
Junior Member
Posts: 4
Registered: 12/20/2006
Location: Eastern USA
Member Is Offline
|
| posted on 12/20/2006 at 11:51 PM |
|
|
One more thing on the quotes..... make sure to use single ' quotes and NOT double " quotes
|
|
|