phpgwapi/inc/common_functions.inc.php around line 1139:
/**
* backtrace of the calling functions for php4.3+ else
menuaction/scriptname
*
* @author RalfBecker-AT-outdoor-training.de
* @param int $remove=0 number of levels to remove
* @return string function-names separated by slashes (beginning with
the calling function not this one)
/
function function_backtrace($remove=0)
{
/
if (function_exists(‘debug_backtrace’))
{
$backtrace = debug_backtrace();
//echo
"function_backtrace($remove)
".print_r($backtrace,True)."
\n";
foreach($backtrace as $level)
{
if ($remove-- < 0)
{
$ret[] =
(isset($level[‘class’])?$level[‘class’].’::’:’’).$level[‘function’].
(!$level[‘class’] ?
’(’.str_replace(EGW_SERVER_ROOT,’’,$level[‘args’][0]).’)’ : ‘’);
}
}
if (is_array($ret))
{
return implode(’ / ‘,$ret);
}
}
*/
return $_GET[‘menuaction’] ? $_GET[‘menuaction’] :
str_replace(EGW_SERVER_ROOT,’’,$_SERVER[‘SCRIPT_FILENAME’]);
}
Ralf
Kevin Scott schrieb:
I’m sorry, I can’t seem to figure what and where to comment out.
If you could provide the filename and lines I can try again. Thanks.
Just a guess:
Some php5.2 have a problem with the php function debug_backtrace() used
in our method common::function_backtrace()
(phpgwapi/inc/class.common.inc.php), which get called eg. with every SQL
error.
Try commenting out just the call to debug_backtrace(), and see if you
get a SQL error display.
Ralf
Kevin Scott schrieb:
When i modify i user in egroupware it saves the change but ends up on a
blank
page.
Any ideas?
I have same problem, I don’t see any errors in logs, in my case the
password is boinked.
I’m using 1.4 branch updated by svn this afternoon.
postgresql 8.2 php 5.2.
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
eGroupWare-users mailing list
eGroupWare-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/egroupware-users
–
Ralf Becker
eGroupWare Training & Support ==> http://www.egroupware-support.de
Outdoor Unlimited Training GmbH [www.outdoor-training.de]
Handelsregister HRB Kaiserslautern 3587
Geschäftsführer Birgit und Ralf Becker
Leibnizstr. 17, 67663 Kaiserslautern, Germany
Telefon +49 (0)631 31657-0
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
eGroupWare-users mailing list
eGroupWare-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/egroupware-users