i have found the error of "notes" in this file:
/path/to/phpgroupware/notes/inc/class.sonotes.inc.php


Fatal error: Cannot redeclare sonotes::$grants in 
/path/to/phpgroupware/notes/inc/class.sonotes.inc.php on line 22

so you can fix it:
------------------
open this file in a text-editor

in top you will find:class sonotes
        {
                var $grants;
                var $db;
                var $db2;
                var $grants;
                var $owner;
                var $total_records;
the line "var $grants;" is once too much
delete one of them so that it looks like:class sonotes
        {
                var $grants;
                var $db;
                var $db2;
                var $owner;
                var $total_records;
then save the file and it schould works no


i think the reason that the error not appeared in log-file is that include() 
and include_once() produces warnings instead off errors. but i'm wondering why 
no warning in log-file appeared.

error_reporting  =  E_ALL & ~E_NOTICE (in my ini.php is set)

how ever, it works no  :) 

Sent from the phpGroupWare forums @ http://forums.phpGroupWare.org


_______________________________________________
Phpgroupware-users mailing list
Phpgroupware-users@gnu.org
http://lists.gnu.org/mailman/listinfo/phpgroupware-users

Reply via email to