Fatal error: Appointment
Status: Alpha
Brought to you by:
trilexcom
When I go in Appointment I have the folowing error :
Fatal error: Call to a member function on a non-object
in
/var/www/opensharepoint/modules/Appointment/module.php
on line 116
It may be linked with the error I have by importing the
focus_sp_appointment.sql :
#1166 - Incorrect column name 'apmRepDays '
I'm also unable to add an appointment :
"Cannot add appointment."
Logged In: YES
user_id=1009366
in the file:
opensharepoint\database\focus_sp_appointment.sql
There are a space after the apmRepDays and before the '
That causes the Mysql error.
Remove the spaces and it will work.
original file:
`apmRepDays ` varchar(255) NOT NULL default '',
how it should be:
`apmRepDays` varchar(255) NOT NULL default '',
Logged In: NO
This is due to several create commands having a tailing
whitespace in them. Change all table creation rules under
database/focus_sp_appointment.sql to not include the
trailing whitespace.
For example, on line 36, change `apmSequence ` to
`apmSequence`