Menu

#1 Fatal error: Appointment

open
nobody
None
5
2012-12-21
2005-09-07
Anonymous
No

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."

Discussion

  • Jurgens

    Jurgens - 2005-10-13

    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 '',

     
  • Nobody/Anonymous

    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`

     
MongoDB Logo MongoDB