craigk5n / webcalendar

WebCalendar is a PHP application used to maintain a calendar for a single user or an intranet group of users. It can also be configured as an event calendar.
http://www.k5n.us/webcalendar.php
GNU General Public License v2.0
148 stars 70 forks source link

Fatel error in webcalendar/view_entry.php?id= #388

Closed automotorcanarias closed 11 months ago

automotorcanarias commented 11 months ago

I just installed webcalendar, when I put a new event I can´t see it, I receive this:

Fatal error: Uncaught Error: Class 'DocList' not found in C:\xampp\htdocs\webcalendar\includes\classes\AttachmentList.php:15 Stack trace: #0 C:\xampp\htdocs\webcalendar\view_entry.php(18): require_once() #1 {main} thrown in C:\xampp\htdocs\webcalendar\includes\classes\AttachmentList.php on line 15

Can you help me?

automotorcanarias commented 11 months ago

I solved this problem, It´s a program error, you have to change the order of the require in view_entry.php...

Original: // Load Doc classes for attachments and comments require_once 'includes/classes/AttachmentList.php'; require_once 'includes/classes/CommentList.php'; require_once 'includes/classes/Doc.php'; require_once 'includes/classes/DocList.php';

Modification: // Load Doc classes for attachments and comments require_once 'includes/classes/DocList.php'; require_once 'includes/classes/AttachmentList.php'; require_once 'includes/classes/CommentList.php'; require_once 'includes/classes/Doc.php';